TIME Parameter
The TIME parameter is used to specify the maximum CPU utilization time allowed for the job to execute. The system will automatically cancel the job execution if the execution time exceeds the specified time. TIME is a keyword parameter and optional.
Syntax -
TIME={([minutes][,seconds])}
{1440 }
{NOLIMIT }
{MAXIMUM }
{0 }
Minutes | Specifies the processor utilization time in minutes. The Minutes value should be from 0 through 357912 (248.55 days). If ZERO is coded in the TIME parameter, it may produce unpredictable results. |
Seconds | Specifies the processor utilization time in seconds. The seconds value is always coded along with the Minutes. The seconds value should be between 0 to 59 seconds. |
NOLIMIT or 1440 | NOLIMIT or 1440 Minutes values are almost the same. Both specify that the job can use the processor for an unlimited time. 1440 means 24 hours. |
MAXIMUM | Specifies the JOB can use the processor for the maximum amount of time. i.e., JOB can use the processor for 248.55 days (357912 minutes). |
0 | If ZERO is coded in the TIME parameter, it may produce unpredictable results. |
Abends -
If the TIME coded in the job is insufficient to execute, JOB fails with the abend code S322.
Default and overrides -
If TIME=NOLIMIT or TIME=1440 is coded at the job card, the system nullifies all TIME parameters on EXEC statements and the default TIME values. All steps within the job will have unlimited processor time.
If the TIME parameter is coded other than TIME=NOLIMIT or TIME=1440 at the job card, the system sets the time limit for each step as below -
- If the step has TIME parameter, the system picks the smaller one among the step TIME parameter value and the time remaining from the job card TIME parameter value.
- If the step has no TIME parameter, the system picks a smaller one among the system default time limit and the time remaining from the job card TIME parameter value.
Examples -
Scenario - TIME=1440 at the job level.
//MTHEXMP1 JOB (META007),'PAWAN Y',TIME=1140
The job can use the processor for 24 hours time.