How to read and write a single record into a file.
I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL.
Thank you
No Answer is Posted For this Question
Be the First to Post Answer
Is condition checking possible in jcl?
how will be submit 1 jcl by other jcl? means that how 'll submit one job by other job??
I have 10 steps, I want to run STEP1 TO STEP4 then I should not run STEP5 and STEP6. Aganin I want to execute from STEP7 to STEP10. ONLY using CONDITION CODES how can we execute this process? 1. Where we can set cond codes for STEP5 and STEP6? 2. How can we execute remaining steps from STEP7 to STEP10?
Differentiate between the joblib and the steplib statements?
using cursor how can you fetch more than one record into a variable
Suppose a proc step has a DD statement like //ABC DD DSN=TEST.FILE1,DISP=SHR DSN=TEST.FILE2,DISP=SHR and the above DD name is overridden from the JCL as given below //procstepname.ABC DD DSN=TEST.FILE3 - Will the DD statement now have just TEST.FILE3 or it will be TEST.FILE3 and TEST.FILE2? Suppose if it is overridden twice like //procstepname.ABC DD DSN=TEST.FILE3 //procstepname.ABC DD DSN=TEST.FILE4 Will this give a JCL error? If not, what will be final output?
once we submitted the job to the operating system, how can we cancel the job before execution?
I have a JCL with 100 steps. I want run the Alternate steps in the JCL ( Like 2 ,4,6,8 etc.. ). How can I acheive this scenario? If It is by Cond Parameter can you provide the Condition code for that?
5 Answers Polaris, Tech Mahindra, UST, Wipro,
Is CPU time assigned to a JOB and JOBSTEP BOTH, by default ?
I had 100 steps in jcl i want to execute first 10 steps only?
What is dummy parameter in JCL??
In your JCL, run the even numbered steps if date is even and run odd numbered steps if date is odd . Where do you generate the date ??in cobol or JCL ??