what is the use of filler in cobol programing?
Answer Posted / vinod
filler is used when we declaring the files supose if u give
record length 80 while declaring in file rec given the size
only 60 for filling the gap of the record in to the spaces
we use the filler.
ex:
01 file1-rec.
02 file-name pic x(60).
02 filler pix x(20).
| Is This Answer Correct ? | 45 Yes | 4 No |
Post New Answer View All Answers
How do u write test cases?
What the difference is between continue and next sentence?
What is the difference between comp and comp-3?
how do you reference the fixed unblock file formats from cobol programs
How you can read the file from bottom?
What is the difference between PIC 9.99 and 9v99 in COBOL?
Discuss about changing dataset name in proc.
how do you reference the rrds file formats from cobol programs
What is the difference between goback, stop run and exit program in cobol?
Difference between cobol and cobol-ii?
IF I mention stop run in CICS what happens?
Describe the cobol database components?
Can you please let me know the centre name of INS certification in Kolkata.
I have one ps file in which there are 3 fileds emp_no,emp_name and leave_app.this ps file information give the detail of employee which is going to apply for leave.suppose emp_no=113430,emp_name=ajay,leave_app=1 that means he is going to apply for 1 day leave.and accordingling the table in db2 will be updated means if he has that no of leave in his account then he will get dat leave and updated acc. in table(leave_balance=previous leave present in table-leave_app).Now i want to check whther the updated result is correct or not by comparing the two ps file using IEBCOMPARE or icetool so what is going to be the two ps file and how its is going to be compare.
how can i see junk values in dclgen or in hostvariable of comp ?