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 |
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
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.
77 a pic x(4) value '1234' -----> instead of this 'abcd' 77 b pic 9(4) value zeros. move a to b what is the answers for both cases? IS it possible? Give me elementary move rules briefly......
What is the difference between write & move in COBOL?
In the JCL, how do you define the files referred to in a subroutine ?
how do u list the abended jobs?
Minimum how many Number of Paragraphs are there in ID- Divison?
If I want to increase the Limit in GDG. What should I do?
)If there are 10 steps in GDG, if I want to refer the step2 after step5 . what should I do?
I have the requirement to compare the two files and pick up the matching records. File 1. file2 23 32 32 13 34 15 35 36 36 35 43 Get the matching records from this 2 files to out file. how you will do this in cobol program?
15 Answers ADP, Broadridge, CTS, HSBC, L&T, RBS, TCS,
consider the following two statements MOVE 10 TO N PERFORM PARA-X N TIMES STOP RUN PARA-X MOVE 5 TO N how many times PARA-X willbe exicuted? a.10 b.5 c.infinate d.execution error