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:
OPTIONSLets you further specify an action request.
NOCCSuppresses the default printing of a header on each page of output.
Endevor V18.1 and V19.0
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
.