what is the difference between return code and maxcc?
Answers were Sorted based on User's Feedback
Answer / srinivas
A RETURN_CODE shows the status of each step within a job, however a MAXCC is counted by the operating system after execution of a complete job which is the maximum of one of the step.
| Is This Answer Correct ? | 22 Yes | 1 No |
Answer / praveen b
RC - Return code
MAXCC - Maximum conditon code
RC is the value written by each step after the completion
(either way successful or not).
MAxcc is the value written by the job to the OS meaning the
Maximum value of all the steps in the job is given as MAXCC
and the same is written to OS by the job.
Let me know if you need any more clarification.
| Is This Answer Correct ? | 9 Yes | 0 No |
Is condition checking possible in jcl? If yes, how?
How to identify where file is empty or not? How many ways are there to identifying?
How can values be passed from the job stream to an executable program?
how to create gdg with out using idcams utility
If I defined space as TRK(10,10) for the one file and lrecl = 4K then tell me how many record will vsam file will contain. will it 1,2,3,4,5 or how many,
Can we give TIME = (1440, 59) also ? or is TIME = (1439, 59) is the last one ?
what is JCLLIB and PROCLIB in jcl and their syntax
How to find the length of variable length copybook using fileaid ??
List the various advantages of using jcl language?
i have 10,000 records in one input file.i want to sort 1 to 5000 records in one outputfile and remaining records sort in another output file write the syntax for this?
if time parameter is not coded on the job card and job step then what is the default time assigned to the entire job and for each step in the job by the systyem ?
WORKING-STORAGE SECTION. 1 GROUP-ITEM. 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50. 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP. PROCEDURE DIVISION. MOVE ZERO TO GROUP-ITEM. ADD 50 TO AMOUNT-1. DISPLAY AMOUNT-1. STOP RUN.