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


Please Help Members By Posting Answers For Below Questions

why icetool be used in programmer view?

2143


Define redefine and its syntax?

544


Explain the input procedure?

539


Explain the difference between comp & comp-3?

549


Define redefine?

560






Explain the syntax of redefine?

520


Explain the types of perform?

525


Define sort?

581


What is input procedure?

578


How to update data area in cobol 400 program?

579


What is sort? And its syntax?

671


What is perform?

539


What are the types of perform?

571


Explain how to convert 2010/02/11 to m/dd/yyy.. With string and without string if any other method... Code?

646


Explain how to update data area in cobol 400 program?

578