What will happen when we try to pass data from JCL to COBOL
using PARM parameter without declaring the length field in
Linkage Section?
Answers were Sorted based on User's Feedback
Answer / madhu t
if we do not code the length field for parm in cobol then
the first 2 bytes of parm data will be used to stored the
length of parm field and also first 2 bytes of parm data
will be lost.
| Is This Answer Correct ? | 15 Yes | 3 No |
Answer / randhir
if we do not code the length field for parm in cobol then
the first 2 bytes of parm data will be used to stored the
length of parm field and also last 2 bytes of parm data
will be lost.
| Is This Answer Correct ? | 0 Yes | 4 No |
TIME parameter in JOB statement or EXEC statement specifies What type of time (CPU time or execution time)?
A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)
How can values be passed from the job stream to an executable program?
Explain about LMOPEN -
How can we execute only one step in a job
22 Answers MAHINDRA, Mind Tree, Tech Mahindra,
How to compare 2 files using File-Aid?
State the uses of syspring, sysin, sort fields, sum fields and dummy.
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
When a dataset is UNCATALOGED in a JOBSTEP, how to get its UNIT and VOL in JCL to refer in subsequent steps ?
what is the job entry system used in your project?
In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and want to execute step04. and once step04 is done then I want to go back and execute step03. once step03 is completed I want execute step05, 06 and so on... can any one tell me how do i do that???
I have a File that has duplicate records. I need only those records that occur more than thrice.