Can 88 level variable be declared in FD section..?
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.
How to Write the RESTART Logic Using COBOL?
4 Answers GalaxE, L&T, Syntel, TCS,
I have the file which is having the extension no as records. sample file will look like below. 2310 3410 3256 4350 3781 5408 I need to replace the record which is starting with 3 to 5 (i.e) 3410 to 5410. How can we do it through cobol and cobol-db2 program? I need the possible logic?
what do you mean by copybook? and what is the difference between the copybook which we are using in working storage and procedure division.
What is the reference modification.
how can u find out just by seeing wheater it is main program or sub program ? any two ways to identify reply soon ?
Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.
I have a File that has duplicate records. I need only those records that occur more than thrice.?
when iam reading a flat file which has 100 records through cobol program when iam reading 50th records it gets abends .. so when i run the program again it should read from 50th record .where it got abened ? how it is possible
Whtz the specialty of 77 level number ?
What is R-mode and A-mode?
How many times the loop runs here 01 a pic 9(2) value 1. perform para1 until a=10 move 1 to a. stop run. para1: move 10 to a.