can we declare occurs in 01 level?
Answers were Sorted based on User's Feedback
Answer / sreenath
occurs clause cannot be used in '01' level because it is
used to repeat the elementary data item
| Is This Answer Correct ? | 7 Yes | 0 No |
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 is difference between COBOL and VS COBOL II?.
can we read in input the file with a variable length ? please , how ..could you help me ?
What are the different types of condition in cobol and write their forms.
What is an explicit scope terminator?
how do u link sub pgm to main pgm ?
State the various causes of s0c1, s0c5 and s0c7.
What is the difference between SEARCH and SEARCH ALL? What is more efficient?
How is sign stored in Packed Decimal fields and Zoned Decimal fields?
What is COMP-1? COMP-2?
is it mandatory to give data division before procedure division ? wht happens if i give procedure division first thn data division ? reply soon
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(10) VALUE 'ABCDEFGHIJ'. 01 WS-VARN REDEFINES WS-VARX PIC 9(5) VALUE '12345'. What will happen I want Display WS-VARX and WS-VARN?