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 JCL works?
what is the control cards?
Does the terms, JOBLOG, SPOOL and SYSOUT indicate the same thing, i.e., where JCL and JES messages and statements are written ?
Please explain with syntax and an example, the Inrec fields and Outrec build in sort.
Is it possible to code instream data in a PROC?
what is inrec fields and outrec fields in sorting
A job has 90 steps i want to execute only step7 and step15
What is the difference between catalogue procedure and In-Stream procedure?
Explain the function of job statement in jcl?
What is the difference between these two parameters? -> accounting information -> class how would it bring the differrence to a program?
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,
I need exexution process for JCL programs