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 |
Give some examples of command terminators?
can any one help -s806
how to display the dataset information?
The following entries appear in the WORKING-STORAGE SECTION: 01 DATE-TODAY. 05 YY PIC XX VALUE "90". 05 MM PIC XX VALUE "12". 05 DD PIC XX VALUE :31". 01 DATE-EDIT PIC XX/XX/XX. MOVE DATE-TODAY TO DATE-EDIT. (a) 901231 (b) 90/12/31 (c) 31/12/90 (d) 311290
Explain how to differentiate call by context by comparing it to other calls?
Name the divisions in a COBOL program ?
What is difference between comp & comp-4?
consider the following piece of code 01 GROSS-PAY 05 BASIC-PAY PIC 9(5) 05 ALLOWENCES PIC 9(3) if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be displayed by the statement DISPLAY GROSS-PAY a.1250 b.01000250 c.01250 d.1.250
How many maximum number of procedures can we write in one COBOL program?
Suppose i want to declare a binary comp fild of 7 byte .how to write?
What guidelines should be followed to write a structured cobol prgm?
why we are using set in searchall?