hi friends........if u know syntax of IEBEDIT IN JCL
Answer Posted / girish kumar
EIBEDIT is used to execute particular steps
Ex. if u have 10 steps and u want to execute only 1.5,8
steps only with out any condition. In this situation we can
use EIBEDIT
ASN: write all steps in one saparate PDS member and then
create another PDS member write JOB CARDS give PGM=IEBEDIT
in sysout give like
PGM=IEBEDIT
DDNAME DD DSN=(DATA SET ALONG WITH PDS MEMBER(where we write
all the steps)
SYSOUT DD (*,INTRDR)
SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP1,STEP5,STEP8)
/*
//
| Is This Answer Correct ? | 12 Yes | 4 No |
Post New Answer View All Answers
How can the attributes of one sms dataset be copied to another dataset?
Name the statement which can be used to send data to another mvs jes3 node?
what is DSN parameter and DISP parameter is used for?
Brief description of inline procedure of jcl.
Explain the hierarchy levels in jcl?
How to submit jcl through a cobol program?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
What is the significance of addrspc parameter in exec statement?
Explain the function of job statement in jcl?
My Question is 1. How to cound no. of records in JCL. Please explain with an example. 2. How to execute only odd steps in JCL? I know EDIT TYPE = Inculde, Step Name = 1,3,5 and COND code for all even step. Anyone knows other than this.
For what purpose steplib and joblib are used ?
i want to store 20 digits . how will u do it in cobol ?
Is it possible to code instream data in a PROC?
How is the record format of an output dataset specified?
if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?