What is mean by maxcc

Answers were Sorted based on User's Feedback



What is mean by maxcc..

Answer / prasad

When we are going to compile and run the jcl after
completion we will get some return codes based upon the
concern versions we will call MAXCC or RC.

MAXCC means Maximum Conditon Code
RC means Return Code.

So we can find out based on the MAXCC or RC wether our
program has been successfully compiled and ran fine.

Is This Answer Correct ?    67 Yes 1 No

What is mean by maxcc..

Answer / rookie

TO add on to answer num-3

Maxcc=0 Successful.
Maxcc=4 Successful with warnings.
Maxcc=8 Critical or Severe error.
Maxcc=12 Fatal Error.

Is This Answer Correct ?    60 Yes 1 No

What is mean by maxcc..

Answer / tarun kumar jain

whenever u will submit a job u will get a return code.which
can be MAXCC=(0,4,8,16).These are severe level of return
code.If it is MAXCC=0 then u have submitted ur job
successfully without any error.

Is This Answer Correct ?    28 Yes 2 No

What is mean by maxcc..

Answer / sameer

whenever we submit our job so every step gives some return
codes to the system and the maximum value return code is
called maximum condition code or MAXCC

Is This Answer Correct ?    22 Yes 2 No

What is mean by maxcc..

Answer / azar

Maxcc-Maximum Condition code: It is one for job. It will be 0 if job is executes successfully.
RC-Return code: It is one for each step in the job. Each step will return some code before going to next step. That code can be called as Return Code.

Is This Answer Correct ?    17 Yes 3 No

What is mean by maxcc..

Answer / timmy

What does it mean if we get a MAXCC=0000 CN(INTERNAL)?

Is This Answer Correct ?    1 Yes 2 No

What is mean by maxcc..

Answer / vasu

thank u 2 every one and please can send any one of jcl material.

Is This Answer Correct ?    0 Yes 10 No

Post New Answer

More COBOL Interview Questions

What are the divisions in a cobol program?

1 Answers  


How can I find the maximum value of a field in a file while reading the file dynamically? without using sort function. Suppose i have a file with fields Timestamp, description, teamname, teamnumber.. i have read the file till end and find the maximun value of timestamp which is not in sorted order.. can we use function max(timestamp)?

1 Answers   CGI,


what is sort? whis is internal & external sort ?when do u go for inter sort & external sort? tell about some sort utilites?

2 Answers   BirlaSoft,


what is the minimum number of lines a Cobol program should have to successfully compile and run

7 Answers  


i have two file one is ksds another one is esds i want store matching records in flat file how to you matching.

2 Answers   Wipro,






consider the fallowing 77 stat pic 9. 88 male value 1,2,3. 88 female value 4 through7. what will be the value of stat a) set male to true. b) set female to true.

5 Answers  


SIGN TRAILING SEPARATE field occupy ?

3 Answers  


In which area will you utilize 88 level items in cobol?

0 Answers  


How can i write a comp-3 variable into a sequential file should i declara the field in the file description as comp- 3?

1 Answers  


i want a program using by if, evaluate , string, unstring, perform, occurs?

1 Answers  


What do you do to resolve SOC-7 error?

2 Answers   Sun Life, Wipro,


ID DIVISION. PROGRAM-ID. PLO. DATA DIVISION. WORKING-STORAGE SECTION. 01 VAR1 PIC 9(2). 01 VAR2 PIC X(2). PROCEDURE DIVISION. ACCEPT VAR2. MOVE VAR2 TO VAR1. STOP RUN. if i give 'PI' in var2 then what will b output of progr. any abend?????

6 Answers   TCS,


Categories