What is mean by maxcc
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
Answer / timmy
What does it mean if we get a MAXCC=0000 CN(INTERNAL)?
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / vasu
thank u 2 every one and please can send any one of jcl material.
| Is This Answer Correct ? | 0 Yes | 10 No |
Is this allowed? 01 WS-TABLE. 03 FILLER-X PIC X(5) VALUE 'AAAAA'. 03 WS-EX REDEFINES FILLER-X OCCURS 5 TIMES PIC X(1). can redefines clause be used with occurs clause?
I HAVE FOLLOWING DECLARATION. 02. A PIC X(10) VALUE 'XXXXXXXXXX'. 02. B REDEFINES A. 05. C PIC X(3). 05. D PIC X(3). 05. E PIC 9(3). IN MY PROG, I HAVE MOVE 1 TO E. DISPLAY A. WHAT WILL BE DISPLAYED AS A RESULT OF THIS? PLEASE EXPLAIN THE ANSWER. THANKS.
I want to remove a duplicates form a given input field using cobol program. please Any one help me out to solve this ... Thanks in Advance.
what is srange and nosrange pls reply to ths question ?
I have the file which is having the extension no as records. sample file will look like below. 2310 3410 3256 4350 3781 5408 I need to replace the record which is starting with 3 to 5 (i.e) 3410 to 5410. How can we do it through cobol and cobol-db2 program? I need the possible logic?
2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic
What are options have been removed in COBOL 11?
Define cobol?
How is sign stored in Packed Decimal fields and Zoned Decimal fields?
What is length is cobol?
how can we find total no of records in a file ....is there any utility......?
Move Zeroes to I move 5 to j perform para1 varying I from 10 by -2 until I = 0 display j. para1. Add 5 to j. What’ll be the value after execution of display stmt. A) 35 B) 40 C) 30 D) 25 please explain how?