Start of change

$D SUBMITRDR - Display $SUBMIT defaults

Function

To display the current settings for the SUBMITRDR initialization statement values. SUBMITRDR specifies the default characteristics of the reader that is used by the $SUBMIT command. The submit reader is a logical device that is used to submit jobs, control statement, and commands to JES2 from a member of a SUBMITLIB concatenation.

Syntax

Read syntax diagramSkip visual syntax diagram $D SUBMITRDRSUBLIB Display limiting keywords
Display limiting keywords
Read syntax diagramSkip visual syntax diagram,Auth=( ),Class,DD-default,Hold,PRTYINC,PRTYLIM,Sysaff,TRace,ASID_trace,JOBName_trace,JOB_Number_trace

Parameters

Auth=(Device|Job|System)
Displays the command authority settings for the SUBMIT reader.
Class
Displays the default job class to be assigned to all jobs submitted using the $SUBMIT command.
DD_default
Displays the default SUBMITLIB DD name that is used when the DDname= keyword is not specified on the $SUBMIT command.
Hold
Displays whether jobs submitted through the $SUBMIT command are to be held after conversion.
PRTYINC
Displays the value to be added to the selection priority of all jobs submitted through the $SUBMIT command.
PRTYLIM
Displays the highest allowable priority for jobs that are submitted through the $SUBMIT command.
Sysaff
Displays the default system affinity for jobs that are submitted through the $SUBMIT command.
TRace
Displays whether tracing is currently active for the $SUBMIT command.
ASID_trace
Displays the ASID used when filtering JES2 $SUBMIT trace points.
JOBName_trace
Displays the job name that is used when filtering JES2 $SUBMIT trace points.
JOB_Number_trace
Displays the job number that is used when filtering JES2 $SUBMIT trace points.

Authority Required

This command requires display authority. The description of the $T RDRnn command explains how to ensure that the authority of the appropriate MVS™ system command group is assigned.

This command requires read security access authority. For a description of assigning command input authority, see z/OS JES2 Initialization and Tuning Guide.

Scope

Single member. The response to this command will be a display of information about this member only.

Messages

The $HASP735 displays the characteristics of the INTRDR initialization statement.

Examples

 1 
$dsubmitrdr                                        
          $HASP735 SUBMITRDR                                 
$HASP735 SUBMITRDR  DD_DEFAULT=TEST,AUTH=(DEVICE=NO,JOB=NO,  
$HASP735            SYSTEM=NO),CLASS=A,HOLD=NO,PRTYINC=0,    
$HASP735            PRTYLIM=15,SYSAFF=(ANY),TRACE=NO         

Display current setting for the $SUBMIT reader.

 2 
$dsubmitrdr                                        
          $HASP735 SUBMITRDR                                 
$HASP735 SUBMITRDR  DD_DEFAULT=TEST,AUTH=(DEVICE=NO,JOB=NO,  
$HASP735            SYSTEM=NO),CLASS=A,HOLD=NO,PRTYINC=0,    
$HASP735            PRTYLIM=15,SYSAFF=(ANY),TRACE=YES,       
$HASP735            ASID_TRACE=0024,JOBNAME_TRACE=PAYROLL    

Display current setting for the $SUBMIT reader with trace filtering active.

 3 
$dsubmitrdr,dd                      
          $HASP735 SUBMITRDR  DD_DEFAULT=TEST

Display current DD_default setting for the $SUBMIT reader.

End of change