What does MAXCC 3 means? It is used in one my codes.
Answers were Sorted based on User's Feedback
Answer / craig
Not much information there, but I'm assuming you are
looking at an IDCAMS step and see something like
IF LASTCC=8 THEN DO
SET MAXCC=3
END
This is typically used when deleting/defining a GDG or VSAM
file, in case the delete fails (because the file wasn't
there to be deleted). This allows processing to continue
after that step, as the programmer decided that manual
intervention was not required. Depending on system
settings, the job my stop processing further steps based on
a condition code set in any step in the job (MAXCC). This
value is typically 8 (any completion code 8 or greater will
stop further processing).
| Is This Answer Correct ? | 4 Yes | 1 No |
File-Aid batch utility return RC-3 when file is empty
| Is This Answer Correct ? | 3 Yes | 3 No |
What is comp-1 and comp-2?
What is the difference between comp and comp-3?
diffrence between z(2) and z9(2)
can i give 9(10) in comp 3 instead of s9(10) ? if i can give wht would be ths ans
WE HAVE 5 DIFFERENT RECORDING MODE IN COBOL.FIXED, FIXEDBLOCK, VARIABLE, VARIABLEBLOCK AND UNDEFINED. WHAT IS THE DIFFERENCE AMONG ALL AND WHICH TYPE OF FORMAT SHOULD BE USED WHEN
9(2).99 how many bytes take? Why . consider as a byte?
How can you pass values from COBOL program to non-COBOL programs?
what is the difference between COBOL2 AND COBOL390?
In an EVALUATE statement, can I give a complex condition on a when clause?
What are the cobol coding sheets?
What is R-mode and A-mode?
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.