how will be submit 1 jcl by other jcl? means that how 'll
submit one job by other job??

Answers were Sorted based on User's Feedback



how will be submit 1 jcl by other jcl? means that how 'll submit one job by other job??..

Answer / saurav paul

You can submit thru IEBGENER utility by copying your job in
the internal reader. Please go thru the steps :

A$xxxx JOB (1354),'SAURAV PAUL',CLASS=x,MSGCLASS=x,
NOTIFY=&SYSUID
STEP1 EXEC PGM=IEBGENER
SYSPRINT DD SYSOUT=*
SYSUT1 DD DSNAME=abcDISP=SHR
SYSUT2 DD SYSOUT=(*,INTRDR)
SYSIN DD DUMMY

Is This Answer Correct ?    21 Yes 2 No

how will be submit 1 jcl by other jcl? means that how 'll submit one job by other job??..

Answer / arif

One way of doing this..

you should have pgm=IKJEFT01 step in your jcl.
In its SYSTSIN dd * have the following tso command.
'TSO SUB TMXA055.JCL.CNTL(OTHERJCL)'
All other necessary DD names to be coded.

Note: IKJEFT01 is the batch pgm for TSO

Is This Answer Correct ?    10 Yes 6 No

how will be submit 1 jcl by other jcl? means that how 'll submit one job by other job??..

Answer / yogesh

Just have a step like this in the calling JCL:

//StepXXX EXEC SUBMIT,DSN='abc.jcl.xyz(BBBBB)'

Is This Answer Correct ?    2 Yes 10 No

Post New Answer

More JCL Interview Questions

Which is the most widely used batch performance monitor for DB2?

2 Answers  


01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable

1 Answers  


in production region 100 steps are running,but i need to run only step5 without changing code how can i do it?

4 Answers   HCL,


If job is submitted with typerun = hold then how can we submit the same job?

3 Answers   Wipro,


I have a JCL which 20 steps. How do I execute 17 th step alone (It should execute only 17ths tep.and it should not execute 18,19,20 steps??

9 Answers   IBM, Infosys, TCS, Xansa, Xchanging,






how can we override data definitions in jcl. can any one give detailed example

3 Answers   TCS,


What will happen if you attempt to restart a job in the middle of a JCL // IF .... // ENDIF?

4 Answers  


what is the difference between return code and maxcc?

2 Answers   iGate,


Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE

0 Answers  


i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i code RESTART and COND parameter?

6 Answers   IBM,


what is the purpose of SYSOUT parameter in the DD statement?

1 Answers  


I have 10 steps, I want to run STEP1 TO STEP4 then I should not run STEP5 and STEP6. Aganin I want to execute from STEP7 to STEP10. ONLY using CONDITION CODES how can we execute this process? 1. Where we can set cond codes for STEP5 and STEP6? 2. How can we execute remaining steps from STEP7 to STEP10?

2 Answers  


Categories