Endevor PRINT MEMBER getting a BSTPPARS: E004 INVALID COMMAND WORDING, FOUND: OPTIONS
search cancel

Endevor PRINT MEMBER getting a BSTPPARS: E004 INVALID COMMAND WORDING, FOUND: OPTIONS

book

Article ID: 279723

calendar_today

Updated On: 02-23-2024

Products

Endevor

Issue/Introduction

Trying to run a PRINT MEMBER job for a listing and getting this error:

STATEMENT #1                                           
PRINT MEMBER 'membrnam'                            
 FROM DDNAME LISTLIB                              
 TO FILE C1PRINT                                  
   OPTIONS NOCC                                         
.                                                      
BSTPPARS: E004 INVALID COMMAND WORDING, FOUND: OPTIONS

 

The TechDoc for PRINT MEMBER shows that OPTIONS is a valid keyword:

OPTIONS
        Lets you further specify an action request.
            NOCC   
                Suppresses the default printing of a header on each page of output.

Environment

Endevor V18.1 and V19.0

Resolution

The V18.1  PTF  LU10181  /  V19.0 PTF LU09053  added  OPTIONS NOCC  to the PRINT MEMBER action -

 /***************************************************************
                                                                 
ADD NOCC (NO HEADINGS) OPTION TO THE PRINT MEMBER REQUEST        
                                                                 
ENHANCEMENT DESCRIPTION:                                         
This enhancement adds the NOCC (no headings) option to the Print 
Member action API and SCL requests. The NOCC option is currently 
available for the Print Element action.                          
                                                                 
For SCL this is specified as: OPTIONS NOCC    

 

1)  If running V18.1 apply LU10181   or if running V19.0  apply LU09053 

or

2)  Remove the OPTIONS NOCC from the SCL:

  PRINT MEMBER 'membrnam'      
 FROM DDNAME LISTLIB      
 TO FILE C1PRINT          
   OPTION NOCC                 
.