What does MAXCC 3 means? It is used in one my codes.

Answers were Sorted based on User's Feedback



What does MAXCC 3 means? It is used in one my codes...

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

What does MAXCC 3 means? It is used in one my codes...

Answer / gopikrishna

File-Aid batch utility return RC-3 when file is empty

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More COBOL Interview Questions

Can the OCCURS clause be at the 01 level?

2 Answers  


Differentiate COBOL and COBOL-II?

0 Answers  


Name some of the examples of COBOl 11?

1 Answers   CSC,


what is sysncpoint?

1 Answers   IBM,


I am sending values a and b with pic x(10) and pic x(10) by using call statement. In linkage section, I am receiving values with pic x(10) and pic x(11). Will my program fail? will it be compile error or run time abend?

3 Answers  


What is a SSRANGE and NOSSRANGE?

1 Answers  


input:-AABBCCDDEFGHIIJ output:- ABCDEFGHIJ Here in input we hav the duplicate characters i.e repeating characters.SO we should eliminate the duplicate characters and should display the output in ascending order.

6 Answers  


What is the difference between index and subscript?

5 Answers   Visa,


Write the code to count the sum of n natural numbers.

1 Answers  


Can we move SPACES to numeric field and ZEROES to alphabetic field? If yes what are the way doing this?

6 Answers   T systems,


What is Pic 9v99 Indicates in COBOL?

1 Answers   SwanSoft Technologies,


01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?

3 Answers   Mind Tree,


Categories