How do you compile cobol program..?
Answer / amarnadh reddy
hi,
Use compiler option IGYCRCTL utility.
ex: //step01 exec pgm=IGYCRCTL
Is This Answer Correct ? | 15 Yes | 0 No |
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
How do you set a return code to the JCL from a COBOL program?
How many maximum number of procedures can we write in one COBOL program?
what is the purpose of linkage section?
What will happen if we try to create GDG (+2) generaton instead of (+1) generation?
What is the difference between Call and a Link?
In a program, variables are used but no DB2 involved in it. Can you call it as host variables??
What is 88 level used for ?
can we redefine 77 level item is it possible
How to increase the logical record length of existing PS file?
What is COMP SYNC?
Consider the following code: 77 A PIC 99V99 VALUE 55.35 77 B PIC 99V999 VALUE 32.754 ADD B TO A ON SIZE ERROR DISPLAY "ERROR!!!" What will be the result ? (a) A=88.10, B=32.754 (b) A=87.00 B=32.754 (c) A=87.10 B=32.754 (d) ERROR!!! will be DISPLAYed on the screen.