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 |
01 var1 pic s9(9)v99. 01 var2 pic x(30). procedure division. move 12345.99 to var1. move12345.99 to var2. display var1. display var2. what is the output?
Can you please let me know the centre name of INS certification in Kolkata.
i want all ERRORS codes in COBOL ,JCL,VSAM ,DB2,CICS
What is wrong with the following data declaration? 01 W-DATE PIC X(6). 05 DD PIC 99. 05 MM PIC 99. 05 YY PIC 99. (a) Nothing is wrong. (b) Under W-DATE all level 05 items are having a PIC 99 but level 01 has PIC X(6). (c) PIC can't be specified for a group item. (d) DD, MM, and YY are invalid datanames.
I got user abend U4038 while compiling my runjcl.. can anyone help me?
I have files that contains both duplicates files(occur more than twice) and non-duplicate files.The file is already sorted by a key.I want to determine those records that are duplicate and will be move to a duplicate file and non- duplicate files to be move to a valid file.thank you.help please
how can u find out just by seeing wheater it is main program or sub program ? any two ways to identify reply soon ?
I have 2 dimensional array with having 100 elements. So how to find the 11th item in an array?
why we are using picture clause in the cobol programs?
is it possible to declare index in cobol program? if it is not why its tell me pls
what is the minimum number of lines a Cobol program should have to successfully compile and run
11 Answers ABC, Societe Generale,
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?