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 |
how to remove leading spaces and zeroes in a cobol variable.is there any easy way to do it
i have a requrement in A as viswa!@#$%&^**reddy i need to move viswareddy in B without junk values pls say how to do ths reply fast
What is the mode in which you will OPEN a file for writing?
How to solve SOC7. I have the cobol coded as below 01 A PIC 9(4). 01 AIN REDEFINES A. 05 AIN1 PIC S9(4) 01 B PIC 9(4)V99. 01 BIN REDEFINES B. 05 BIN1 PIC S9(4)V99. PROCEDURE DIVISION. START-PARA. INITIALIZE A AIN B BIN. ACCEPT A B. DISPLAY 'VALUE OF A=' A. DISPLAY 'VALUE OF B=' B. DISPLAY 'VALUE OF BIN1=' BIN1. DISPLAY 'VALUE OF AIN1=' AIN1. COMPUTE AIN1 = BIN1 - AIN1. DISPLAY 'VALUE OF AIN1=' AIN1. When i'm executing this code i'm getting SOC7 for A = 12 & B=34. Can someone explain SDSF OUTPUT DISPLAY TCOM058R JOB05458 DSID 102 LINE 0 COLUMNS 02- 81 COMMAND INPUT ===> SCROLL ===> CSR ********************************* TOP OF DATA ********************************** VALUE OF A=12 VALUE OF B=34 VALUE OF BIN1=34 VALUE OF AIN1=12 CEE3207S The system detected a data exception (System Completion Code=0C7). From compile unit PROG1 at entry point PROG1 at statement 29 at compile +000004CE at address 00007ECE. Please address how to solve this issue Thanks in advance.
01 NAME1 PIC X(13) VALUE "COBOL PROGRAMMING". 01 NAME2 PIC X(13). now I want to display the value of NAME1 in reverse order i.e value should be displayed as "GNIMMARGORP LOBOC" HOW can I do that ??? please let me know if any one knows it.
Whtz the specialty of 77 level number ?
Suppose i have a Cobol field of 10 byte. it contains a decimal sign.How to know where is the point location?
Explain about level numbers?
plz any one tell clearly the justify right clause?
What are the divisions in a cobol program?
if a dataset is already created with fixed length but after that i want to change fixed length to variable length then how is it possible
can we declare occurs in 01 level?