What is Backward Referencing ?

Answers were Sorted based on User's Feedback



What is Backward Referencing ?..

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

What is Backward Referencing ?..

Answer / swathiii

It is nothing but Refer Back.

Is This Answer Correct ?    7 Yes 0 No

What is Backward Referencing ?..

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

Post New Answer

More JCL Interview Questions

what r the types of job control statements?

2 Answers  


What is DISP= (NEW,PASS,DELETE)?

3 Answers   HCL,


What is difference between Return Code, user completion code, Abend code and reason Code?

2 Answers   IBM, Satyam, Wipro,


Explain about LMPUT-

1 Answers  


i have job card like this //job ***** //step1 exec pgm=iebgener //sysut1 dd dsn=main.sss,disp=shr // dd dsn=main1.sss,disp=shr // dd dsn=main2.sss,disp=shr //sysut2 dd dsn=out1.mmm ,disp=(new,catlg,delete) dcb=( ) // sysin dd * like this what i have to do to skip dsn=main1.sss please giveme answer asap

2 Answers   IBM, TetraSoft,






WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move

0 Answers  


Is acct parameter mandatory?

0 Answers  


Can an individual step be restricted from using all the jobs allowed cpu time?

0 Answers  


Can a job have only steplib and no joblib ?

6 Answers  


What is the difference between the positional and keyword parameters? Give examples.

0 Answers  


What is the function of //cntl statement?

0 Answers  


How to check empty file in jcl?

4 Answers   Infosys,


Categories