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 |
What is the error/SOC code if dd names are not sysut1 and sysut2 in IEBGENER?
can anyone explain me about sort in jcl with inrec and outrec ?
restart logic ?
What is a procedure?
Suppose i have a file with 10 recs and i want to skip only the 7 th record and copy the rest into another file. How do i do it using SORT?
1) max no of steps with jcl job can execute 2) how many extentions r possible in sequencial files with job 3) what is set parameter will do 4)how to get syntax errors without sub 5) what is differ between error and abend 6) hw mvs knows who submitted the job and whoom it has to forward 7) what are the positinal parameters of data descripter
i have records from 1 t0 100 . i need to open records from 10 to 18 and change the values in tht ? how can i do tht ?
i want to store 20 digits . how will u do it in cobol ?
wht is sysudump n sysout,sysprint ?
What is a Generation Data Group (GDG)?
lines(1,cancel)??What is meant by that??Plz explain it....
Suppose I have five jobs to do. But I want to hold one?