i Want All cobol ERROR codes?
Answers were Sorted based on User's Feedback
Answer / padmanabha naidu.p
if you want see all cobol errrors,simple
IDENTIFICATION DIVISION.
PROGRAM ID. ERRMSG.
| Is This Answer Correct ? | 16 Yes | 11 No |
If my program receives input feed from program in other system.. if the receiving field size is less than the sending field.. what abend will be happening.
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.
How To move a value to an array using move verb?
If i initialize the 01 level variable in array, will it initialize all the array elements (occurs)?
01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?
EXPLAIN MAIN FRAME TESTING PROCESS...HOW TO FIX THE MAINFRAME BUGS?
what is the minimum number of lines a Cobol program should have to successfully compile and run
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?
What are differences between COBOL and java ? why we are giving more preference to COBOL ?
what are the working storage fields in BMS macro?
what will happen if pass values more than 100 using PARM parameter?
what is the result of the following? DIVIDE A INTO B GIVING C. a.C=A/B b.the reminder of B/A is stored in C c.C=B/A d.the reminder of A/B is stored in C