Answer Posted / rana
//LINKCARD EXEC PGM=IEWL,COND=4,LT,COBOL),
// PARM='XREF,LIST,AMODE(31),RMODE(ANY),RENT,REUS'
//SYSPRINT DD SYSOUT=*
//SYSLIB DD DISP=SHR,DSN= Provide the Load module PDS
XREF - Direct Refrences
AMODE - Addressing MOde
RMODE - Resident Mode
RENT - re-entrant Program
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
How you can read the file from bottom?
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
)If there are 10 steps in GDG, if I want to refer the step2 after step5 . what should I do?
A table has two indexes defined. Which one will be used by the SEARCH?
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 to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
Name some of the examples of COBOl 11?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..
How to remove 2 duplicate records and copy only one using job control language?
how do you reference the rrds file formats from cobol programs
What is comp-1 and comp-2?
How many bytes S(8) comp field occupy and its maximum value?
Can a Search can be done on a table with or without Index?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?