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 |
What do you feel makes a good program?
I have a COBOL main program which is calling sub program, the number of calling parameters used in main program are 4 whereas in sub program it's 5. Sub program is passing 5 parameters back to main program Will there be any compilation error? Or main program parameters displays junk values?
how to transfer the file from pc to mainframe??
In a COBOL program, 2 tables TABLE1 and TABLE2 are defined that are indexed by INDEX1 and INDEX2 respectively. Can we use INDEX1 with TABLE2 and INDEX2 with TABLE1?
How to code fscode 10 in cobol program? Where yoy code in your pgm?give ans for the question.
. How do we cast a variable in COBOL
Discuss about changing dataset name in proc.
What is inspect in cobol ?
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
hi is there any means of deletin a record from a ps usin cobol not using jcl?eg if i am reading a record and if some condition is matched tat particular record must be deletd fom the ps
What is the meaning of 'Eject' verb in cobol?
Can we dynamically increase the size of occurs clause? i.e In case I an not sure of the size of array and want to increase the size at run time.If yes , how?