Answer Posted / surya
In DATA DIVISION, under WORK-STORAGE SECTION, we can mention the copy book. Please find the example below.
COPYBOOK "WRKRCD" having the below statements.
01 WORK-RECORD.
05 NAME-FIELD PIC X(1).
05 FILLER PIC X(1) VALUE SPACE.
05 RECORD-NO PIC S9(3).
05 FILLER PIC X(1) VALUE SPACE.
05 LOCATION PIC A(3) VALUE "NYC".
05 FILLER PIC X(1) VALUE SPACE.
05 NO-OF-DEPENDENTS PIC X(2).
05 FILLER PIC X(7) VALUE SPACES.
In program we can mention like below
DATA DIVISION.
WORKING-STORAGE SECTION.
COPY WRKRCD.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what all the conditiones required for using open opcode on a file?
How to update data area in cobol 400 program?
I like to know if possible to use %TRIM or any statement with prefiv "%" like RPG ile programs. thanks
How to detect record is locked in cobol/400?
What is redefine?
Define sort?
Explain the input procedure and output procedure?
Explain how to convert 2010/02/11 to m/dd/yyy.. With string and without string if any other method... Code?
What is input procedure?
seqence numbers in cobol
What is perform?
How to detect record is locked in cobol/400? What is the solution for that?
Define perform?
Explain the difference between search and searchall?
Define redefine?