I have a job (4 steps) with time parameter coded in job &
exec, say time=10 in job & time =3,2,2,4 in each steps.
Will the job executes successfully?

Answer Posted / megha

It depends on how much time each step takes,In the above
job the total time the job can take is 10 minutes and if
the total time taken by each step(step1 to step 4) is
within 10 minutes (and also within the time specified for
each step) ,then the job will execute without any error.

Is This Answer Correct ?    26 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is the compile process of cobol program expalin with code

2011


What is condition checking in jcl? Is this possible?

636


what is JCL?

708


We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?

1762


Differentiate between addressing mode and run mode.

620






WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375

1049


In sms datasets, what is the function of the dd mgmtclas keyword?

869


what is DD statement is used in JCL?

690


Explain how can the submitting users racf authority be overridden in a job stream?

681


what is the purpose of coding class parameter in job statement?

732


define cond parameter in jcl?

785


How to run cobol program using jcl?

662


What is the difference between run mode and addressing mode?

644


I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?

1363


What is the purpose of dd * statement in jcl?

819