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 |
hai friends ,i have HSBc exam on this sunday,my platform is Mainframe,i have 1 year exp,pls any one send me placement papers of Hsbc and technical questions on mainframe
6 Answers Citi Bank, CitiGroup, HSBC, iNautix, Wipro,
Have you used comp and comp-3 in your project? And how?
What is tne need to use sub programs in Cobol?
Hi all, I have a following requirement to write the cobol program. I have to load the 129 variables from input sequential file which are in excel sheet to the cobol inernal table. and after loading into table i have to compare this data with the business file. here compare means controlling the data whether the format(numeric,alpha) is same in the business file and in the table??? i have the same data in input and business file. could anyone please give me any idea of the logic?// i have all the 129 different variables(129rows,1 column)is there .
Will the variable POS in the following code have a value of 2 or not? 01 POS PIC S9(4) COMP VALUE 2. 01 FIRST-NAME PIC X(10) VALUE 'ABC'. 01 LAST-NAME PIC X(10) VALUE 'XYZ'. 01 NAME PIC X(20) VALUE SPACES. STRING FIRST-NAME DELIMITED BY SPACES ' ' DELIMITED BY SIZE LAST-NAME DELIMITED BY SPACES INTO NAME WITH POINTER POS
i have a sequencial file contains multiple records, i want to extract one row which contains various fields like order number,date,warehouse,.ect.. in to the another file by accepting the order number from jcl. how can i do it. pls help me..
How do you set a return code to the JCL from a COBOL program?
How many sections are there in data division?.
What is redefines clause in COBOL?
what is a load module ?
what will happen if i give program name and member name as different? program runs successful or w'll abend?
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?