I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?
10 37551I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?
5 13055In a JCL if previous steps return code is greater than 0 or 4 then the next step will not execute. But the job will be successfull with the maximum return code. How can we reset this maximum return code to '0' regardless of return codes of any steps?
4 27626I found in one of the jcl, gdg version being mentioned as : abc.def.ghi(-0) Can anyone tell me how referring the version as (-0) is different from referring it as (0)
2 6524I have two input SORTIN files and We need to create one SORTOUT file which contains data of both input files. What is the SortCard for this?. Suppose the length of the both files are different, then How we do it? Please reply ASAP
CSC,
4 33183how to identify the file used in the JCL is an VSAM file. Just seeing the JCL code how can we track the file as VSAM file?
CSC,
6 17477
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
what happens in execution stage in job processing?
what is use of disp parameter in dd statement?
What is multithreading in jcl?
What is catelog procedure and how many catelog procedure to use in one job?
which utility is used a dummy utility?
I want my job (careerride) to be executed in 1 minute and 2 seconds. How do I do that?
What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?
Is condition checking possible in jcl? If yes, how?
How is the record format of an output dataset specified?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
What is the significance of addrspc parameter in the exec statement?
which utility is used to run a cobol-db2 program?
what is use of dcb parameter in dd statement?