Endevor CSV List Type does not contain data for Stage 2 of the Environment
search cancel

Endevor CSV List Type does not contain data for Stage 2 of the Environment

book

Article ID: 282462

calendar_today

Updated On:

Products

Endevor

Issue/Introduction

When running a CSV LIST TYPE utility with STAGE set to *,  only getting data from stage 1 of the Environment -

  LIST TYPE *             
  FROM ENVIRONMENT envrname
  SYSTEM *            
  STAGE *.            

 

Was expecting to get data for both stages.

What is wrong?

Environment

All supported versions of Endevor

Resolution

When the Environment name is explicitly specified in the request, the default mapping options are:
              PATH LOGICAL, RETURN FIRST and NOSEARCH. 
 
PATh LOGical/PHYsical
Mapping path. Determines if Endevor should use the physical or logical mapping path as defined in the C1DEFLTS table. The default is logical.
 
NOSearch/SEArch
Mapping argument. Search across mapping locations or only search at the location specified. The default is nosearch.
 
RETurn FIRst/ALL
Return only the first or all records that satisfty the request. This parameter is used with an object that exists at more than one location. The default is first.
 
 
To get data for both stages, specify RETURN ALL and SEARCH in the OPTIONS clause:
  LIST TYPE *             
  FROM ENVIRONMENT envrname
  SYSTEM *            
  STAGE *
OPTIONS  RETURN ALL
SEARCH.