hi friends........if u know syntax of IEBEDIT IN JCL
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / muttaiah
Adding to Girish Answer.
The jcl for IEBEDIT utility would look like this.
//Jobcard
//Stepname exec pgm=IEBEDIT
//DDNAME DD DSN=PDS(WHICH CONTAIN THE JCL)
//Sysout DD sysout=(*,Intrdr)
//sysprint dd sysout=*
//sysin dd *
EDIT start=Jobname, Type=Include/exclude,
Stepname=(steps)
/*
//
Hope this will give the complete syntax of IEBEDIT utility.
People who voted the answer as 'No' justify with your
answer.
| Is This Answer Correct ? | 3 Yes | 5 No |
how to modify the copy book?explain with examples
What is model dataset label(Model DSCB)?
describe the job statement, its meaning,syntax and significant keywords?
. What is the difference between the following statements : I) step#1 exec PGM=accpay ii) step#1 exec tbalance
Why 16 is used in calculating the DPRTY ? as, DPRTY = (num1, num2), THEN, DPRTY = 16* num1 + num2
A maximum of 100 chars can be passed to Cobol through Parm in JCL, If we want to pass more than 100 Chars how we can do it ?
How jcl is used for testing batch programs?
What does a disposition of (NEW,CATLG,KEEP) mean?
i created one base gdg with lrecl = 100 , now i need to create versions with different lrecl =150,200 can it be possible to create like tht ?
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
wht do u mean by internal reader in jcl ? wht is the use of internal reader ?
once we submitted the job to the operating system, how can we cancel the job before execution?