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

what if any ,is the syntax error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.

1 Answers  


how to allocate a dynamic dataset in jcl ?

3 Answers   Patni, TCS,


What is the significance of addrspc parameter in exec statement?

0 Answers  


What are three parameters you can specify on Job statement as well as on exec stmt ?

1 Answers  


What is maximum length of block size?

5 Answers   Cap Gemini, Kanbay, TCS,






how can you check if a file is empty using jcl?

0 Answers   IBM,


what is force complete

2 Answers   IBM,


1.How to check for the errors using TYPRUN=SCAN?What will be the output if we give TYPRUN=SCAN?

11 Answers  


a input file contains 1000 records, how to move the first 500 record into one out put file and how to move to second 500 records to anothere output file

6 Answers   ITC Infotech,


what are the various stages of job processing?

0 Answers   IBM,


One of My Job is running in production, which contains five steps?i want to pass the input to FIFTH step while running is it possible? if how?

1 Answers   CTS,


What happens if both JOBLIB & STEPLIB is specified ?

0 Answers  


Categories