what JCL Procedures?
No Answer is Posted For this Question
Be the First to Post Answer
How do you submit a job for execution?
If your job fails at particular step then what would be the return code for next steps
How to search strings in multiple dataset with conditions 'string1 & string2'?
How to identify where file is empty or not? How many ways are there to identifying?
My JOB contains three steps. //STEP1 EXEC PGM=ABC //STEP2 EXEC PGM=DEF //STEP3 EXEC PGM=GHI My Question is 1) I want to execute second step only. How will do. 2) Soppose U consider above three steps are in PROC steps and I want execute the PROC second step only? How to execute the second step only. During exection time its creating any ABEND? Please let me know..........
How to point my proc to production dataset always though i keep jcllib order=development.dataset? Is it possible?
how can the same proc be re-used and called by many jobs?
Can I send output of job to my remote device careerride123?
What is the use of IEBGENER ?
How can you execute a COBOL program via SYSIN in JCL?
How to read records in reverse order in flat file?
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above