WE HAVE 2 FILES IN COBOL. ONE IS FIXED LENGTH RECORDS
ANOTHER ONE IS VARIABLE LENGTH. IF I DECLEAR LRECL OF FIXED
ONE AS 80 AND 2ND RECORD AS 132. WHAT WE NEED TO DECLEAR
LRECL FOR THOSE 2 FILES IN JCL?
Answer Posted / narayan
For Fixed block LRECL=8
and for Variable block LRECL=136 (132+4)
| Is This Answer Correct ? | 21 Yes | 5 No |
Post New Answer View All Answers
What is length is cobol?
What is amode(24)?
In COBOL, what is the different between index and subscript?
What is an in line perform? When would you use it? Anything else you wish to say about it.
i want to learn mainframe..any websites and material to learn from basic..? my mail id : rajeswaribe2010@gmail.com
What is the utilization of copybook in cobol? Could we utilize a similar copybook?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
What is link edit in cobol?
Can we redefine the field of x(200) to less than 200?
What are various search techniques in cobol? Explain.
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.
Write a program to enter and display the names of students in a class using the occurs clause.
What is the difference between Global and External Variables?
how do you reference the rrds file formats from cobol programs
Write the code implementing the perform … varying.