hi friends........if u know syntax of IEBEDIT IN JCL

Answers were Sorted based on User's Feedback



hi friends........if u know syntax of IEBEDIT IN JCL..

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

hi friends........if u know syntax of IEBEDIT IN JCL..

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

Post New Answer

More JCL Interview Questions

how JCL works?

0 Answers  


what is the control cards?

3 Answers  


Does the terms, JOBLOG, SPOOL and SYSOUT indicate the same thing, i.e., where JCL and JES messages and statements are written ?

2 Answers  


Please explain with syntax and an example, the Inrec fields and Outrec build in sort.

4 Answers   CTS, TCS,


Is it possible to code instream data in a PROC?

0 Answers  






what is inrec fields and outrec fields in sorting

3 Answers   Fidelity,


A job has 90 steps i want to execute only step7 and step15

3 Answers   Cognizant,


What is the difference between catalogue procedure and In-Stream procedure?

2 Answers  


Explain the function of job statement in jcl?

0 Answers  


What is the difference between these two parameters? -> accounting information -> class how would it bring the differrence to a program?

4 Answers  


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

0 Answers  


Categories