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 |
Suppose i have a Cobol field of 10 byte. it contains a decimal sign.How to know where is the point location?
how to convert vsam table into DB2 table?
Mention the guidelines to write a structured cobol program?
If a sub program is called from mainprogram.I have opened cursor in main program and Fetch the result in subprogram ,Is it possible ?If yes please tell me the reason.
how many bytes does a s9(12)COMP-4 field occupy?? a.2 b.4 c.8 d.1 ans with reason please
What is the output generated by the following code? 01 GRP-I. 05 SUBFLD1 PIC XX VALUE "AB". 05 FILTER PIC X(6) VALUE SPACES. 01 GRP-2 REDEFINED GRP-1. 05 SUB-FLD2 PIC XX. 05 SUB-FLD3 PIC XX. 05 FILTER PIC X(4). IF SUB-FLD1 NOT = SPACES DISPLAY "SUBFLD1" MOVE "ABBCCD" TO GRP-1 IF SUB-FLD3 = SPACES DISPLAY "SPACES" ELSE DISPLAY "SUBFLD3" DISPLAY "END" ELSE DISPLAY "SPACES" DISPLAY "END". (a) SUBFLD1 SUBFLD3 END (b) SPACES END (c) SUBFLD1 END (d) SUBFLD1 SPACES
What is the figurative constant in cobol?
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
0 Answers TryTechnicals Pvt Ltd,
Write down the divisions of cobol program?
What is the maximum length of a field you can define using COMP-3?
4 Answers Complex System, Infosys,
how will u find out 3rd week's 2nd day using occurs ?
What do you understand by psb and acb?