what is linkcard in cobol?
Answer / 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 |
how to transfer the file from pc to mainframe??
How may divisions are there in JCL-COBOL?
Have you code any new programs in COBOL ? What is the functionality of the programs?
Whats the difference between search & search ALL?
What are declaratives and what are their uses in cobol?
how to code in cobol while using variable block file?
Consider the following COBOL entries: 05 X PIC 99 VALUE 10. SUBTRACT 20 FROM X. The resultant value of X wil be
How do you code Cobol to access a parameter that has been defined in JCL?
How to declare if emp-name = AAAAA""BBB in working-storage section. After display emp-name should print like AAAAA""BB
I have a Flat file in which certain records are present in a tabular format. I need to extract some of the records on some basis from it and copy them into a flat file...how it can be done ??
What is COMP SYNC?
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10