NetBatch Management Programming Manual
NetBatch Procedure Calls
NetBatch Management Programming Manual—522462-003
7-3
NB^JOB^SUBMIT Procedure
submit-rec has the structure:
ACTUAL-JOB-NAME
is the space-filled name of the job. This field is mandatory.
JOB-DETAILS
specifies the job’s scheduler, start time, defaults, and attributes (as listed in the
introduction to submit-rec). Character fields can be all spaces or space-
filled. Spaces are not allowed in binary fields. The effect of an all-spaces
character field depends on whether alter-flag specifies submit or alter:
•
If it specifies submit, the job adopts a scheduler-supplied default where
available. For example, if JCLASS is all spaces, the job adopts the class
specified by the scheduler’s DEFAULT-CLASS attribute.
•
If it specifies alter, an all-spaces character field has no effect on the job.
For example, if JCLASS is all spaces, the job’s class is not changed.
DEF SUBMIT-REC.
03 FILLER Type Character 12.
03 ACTUAL-JOB-NAME Type Character 24.
03 FILLER Type Binary 16.
03 JOB-DETAILS.
05 SCHEDULER Type Character 18.
05 JCLASS Type Character 24.
05 EXECUTOR-PROGRAM Type Character 36.
05 FILLER Type Binary 16.
05 PRINT-LINES.
07 B Type Binary 16.
05 PRINT-PAGES.
07 B Type Binary 16.
05 TAPE-DRIVES.
07 B Type Binary 16.
05 SELPRI Type Character 1.
05 STALL Type Character 1.
05 PRIORITY.
07 B Type Binary 16.
05 WAIT-TIME.
07 B Type Binary 16.
05 START-TIME.
07 B Type Binary 16.
05 START-UP Type Character 40.
05 IN-FILE Type Character 36.
05 OUT-FILE Type Character 36.
05 DEFAULTS Type Character 26.
05 FILLER Type Character 1.
05 HOLD-FLAG Type Character 1.
05 RESTART-FLAG Type Character 1.
05 JOB-TEXT Type Character 32.
05 FILLER Type Character 1.
05 STOP-ON-ABEND Type Character 1.
05 HIGHPIN Type Character 1.
05 FILLER Type Character 6.
05 HOLD-AFTER-FLAG Type Character 1.
END