What is Backward Referencing ?
Answers were Sorted based on User's Feedback
Answer / praveen b
Generally Keyword parameters having their value as '*' will
be referred as Backward reference, which means the value of
the Paramater depends on the previous lines of the JCL.
EX:
Sysout=* will refer the Msgclass value in the job card.
DSN=*.step1.DD1 Will copy the DSN value of step(step1)of DD
stmt DD1.
Similarly, we can refer back the following parameters.
1) Vol=ser
2) DCB
3) Disp
I hope this answered your question.
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / naga
ya its nothing but refer back(*)
For eg sysout=*, means its referback to the msgclass
parameter in job statement, where my output is routed.
| Is This Answer Correct ? | 3 Yes | 0 No |
Suppose I have a file with three fields with data in the following format 1. empid - S9(4) COMP 2. empname - X(20) 3. empsal - S9(5)V(2) COMP-3 If I view this file, it will not be in a readable format. How to display the empid and empsal fields in a readable format without using COBOL program? What kind of SORT card will have to be coded?
What is the difference between IEBGENER, IEBCOPY and REPRO in IDCAMS utility?
What is a MODEL Paramater in GDG ?
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
Can we change a FB file to VB file in JCL? Please help
When will we need to specify Space parameter ?
What is Backward Referencing ?
what is the function of spool command?
Can we delete the data using IEFBR14 , IEBGENER??
if in a job, region is mentioned in both jobcard and in step then which is cosidered at the step level? A job has region 4k in jobcard and step1 with region 0k and step2 with 16k, then what is the region allocated for the entire job? what is the region step1 takes? what is the region step2 takes?
what is the alternative to model parameter?
How do you handle empty files in a JCL ?