what is the use of filler in cobol programing?
Answer Posted / anubhav
FILLER can be used to align numeric variables to word
boundaries for performance improvement.
When you intialize a group variable, filler fields are
unaffected. This can be used to our advantage. for example
in date fields-
Code:
01 date-fl.
05 mm pic xx.
05 filler pic x value '/'.
05 dd pic xx.
05 filler pic x value '/'.
05 yy pic xx.
By declaring this variable we need not move '/' as a
separator even if we use and initialize date-fl in program
many times.
| Is This Answer Correct ? | 50 Yes | 8 No |
Post New Answer View All Answers
How to remove 2 duplicate records and copy only one using job control language?
What are the different rules of SORT operation?
Write a program that uses move corresponding.
if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need
Explain what you understand by passing by value.
) How do u handle errors in BMS macro?
How do you differentiate between cobol and cobol-ii?
What is report-item in COBOL?
What is the difference between structured cobol programming and object alternativelyiented cobol?
EXPLAIN MAIN FRAME TESTING PROCESS...HOW TO FIX THE MAINFRAME BUGS?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
I have a File that has duplicate records. I need only those records that occur more than thrice.?
Explain the configuration section of a cobol program with examples of syntax.
How to use the same COBOL program in Batch and CICS on lines? explain with an example