in cobol main pgm is calling sub pgm but sub pgm does not
exists , what abend i get if submit the job?
Answers were Sorted based on User's Feedback
Answer / kiran
i think it will be s806...ie load module not found
| Is This Answer Correct ? | 13 Yes | 0 No |
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
I have a PS file and I would like to manually insert the binary values (like a COMP format) into the file. How can i do that? the way do in COMP-3 format.. suppose i want to insert -12345 in to file in comp-3 format. simply we can open a file in edit mode and do HEX-ON and insert the value . SEE BELOW-- 135 24D in 3 bytes - this will be COMP-3 presenatation of -12345.
how do u link sub pgm to main pgm ?
What is the difference between a DYNAMIC and STATIC call in COBOL?
I have a variable account-number declared as comp-3, s9(10) comp-3 in a file. How do i find a particular account number say 123456 in that file?
what is the advantage of using redefines instead of delaring the variables ?
what is SYNCHRONIZATION?
i need the code for this program in cobol. 2 + 1 = 3 4+3=7 6+5=11 8+7=15 10+9=19
consider the following two IF statements: IF X AND NOT Y MOVE A TO B IF Z=1 OR 9 MOVE A TO B select one of the following data divusion entries which gives identical results for both the above IF statements a.01 Z PIC 9 88 X VALUE 1.9 88 Y VALUE 0.2 THRU 8 b.01 Z PIC 9 88 X VALUE 0.2 THRU 8 Y VALUE 1.9 c.01 Z PIC 9 88 X VALUE 1.9 88 NOT-Y VALUE 0.2 THRU 1.9 d.none of yhe above
where will we code call by content and call by reference dude pls reply soon ?
What are the steps you go through while creating a COBOL program executable?
What is the Importance of GLOBAL clause According to new standards of COBOL?