what is the maximum error code in mainframe
Answers were Sorted based on User's Feedback
Answer / muttaiah
The return code can be from 0000 - 4095 for a step.
| Is This Answer Correct ? | 11 Yes | 1 No |
What is the difference between index and subscript?
Define in-line perform?
how can you identify wheather the program is using search or search all in the cobol program?
In the JCL, how do you define the files referred to in a subroutine ?
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
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?
What is the difference between COMP & COMP-3 ?
What are ISOLATION LEVELS? Where do we need to specify them in compiling JCL (Exactly which statement and what is syntax for it)?
if you give cylinder(1,1)how many cylinders it will be allocate?
What is the purpose of Identification Division?
What is the difference between PIC 9.99 and 9v99 in COBOL?
0 Answers SwanSoft Technologies,
consider the following piece of code 01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable