can i anyone tell me how to use copybooks in cobol
Answer / 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 |
what is the cobol compiler?
Explain how to detect record is locked in cobol/400? What is the solution for that?
how array can be declare in cobol?
How to Convert 2010/02/11 to m/dd/yyy.. with string and without string if any other method... code
Explain the syntax of sort?
How can i change the below code in SQL to cobol/400? EXEC SQL SELECT COUNT(*) INTO : WS-COUNT FROM Db file WHERE Field 1 = : WS-VAR AND Field 2 = : WS-USERID END-EXEC * EVALUATE TRUE WHEN SQLCODE = +000 MOVE WS-COUNT TO Copybook field WHEN SQLCODE = +100 MOVE ZEROES TO Copybook field
Explain the input procedure?
What are Fillers ? What is the actual use of Fillers ? With small/simple Example..
Explain the difference between search and searchall?
Define sort?
Define redefine and its syntax?
Trying to help a friend... How do you code screen I/O without a DDS? I know it can be done, because for a short time, I worked for a company that did it. It was just too long ago for me to remember what was involved.