What are Fillers ?
What is the actual use of Fillers ? With small/simple
Example..
Answer Posted / krishna
When a programmer is not intended to use any fields in a record structure, it can be defined as Filler.
This can’t be initialized or used in any operation of the procedure division.
Eg: if a record contains the following fields
05 EMP-REC.
10 EMP-KEY PIC XXX.
10 EMP-NAME PIC X(32).
10 EMP-SEX PIC X.
10 EMP-DEPT PIC X(10)
10 EMP-DESIG PIC X(5).
10 EMP-SAL PIC 9(7).
If the programmer is not intended to use , name ,dept and sal in the program the u can define the structure as follows
05 EMP-REC.
10 EMP-KEY PIC XXX.
10 FILLER PIC X(32).
10 EMP-SEX PIC X.
10 FILLER PIC X(10)
10 EMP-DESIG PIC X(5).
10 FILLER PIC 9(7).
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
What is perform?
Explain the output procedure?
Explain the input procedure?
How to detect record is locked in cobol/400? What is the solution for that?
How to detect record is locked in cobol/400?
Explain what all the conditiones required for using open opcode on a file?
Define perform? And its types?
What is output procedure?
What is the actual use of fillers?
What is the syntax of sort?
I like to know if possible to use %TRIM or any statement with prefiv "%" like RPG ile programs. thanks
why icetool be used in programmer view?
What is sort?
How to update data area in cobol 400 program?
Explain the input procedure and output procedure?