Previous Topic: Use a User's Library ListNext Topic: Set an i5/OS Job's Process Priority


Pass Keyword Parameters to SBMJOB

When the scheduling manager submits a job to the i5/OS system, the job must pass through the SBMJOB command to execute. The following statements map to parameters for the SBMJOB command.

Statements

SBMJOB Parameters

USER

USER

JOBD

JOBD

LIBL

INLLIBL

JOBQ

JOBQ

CURLIB

CURLIB

JOBNAME

JOB

You can also pass additional keyword parameters, such as OUTQ(*JOBD), to the SBMJOB command.

To pass an SBMJOB command keyword and value combination, specify the OTHERS statement in the job definition.

Note: The special value for these SBMJOB parameters, such as *USRPRF and *JOBD, also apply to the statements. You can use these special values in your job definitions. For more information about the SBMJOB parameters and their special values, see the IBM documentation.

Example: Specify the Printer and Output Queue for an i5/OS Job

This example runs a program named PAYJOB on an i5/OS system. The printer and output queue information is taken from the job definition.

AGENT I5AGENT
CLPNAME PAYJOB
OTHERS PRTDEV(*JOBD) OUTQ(*JOBD)