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

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is use of restart and how to use it?

750


define cond parameter in jcl?

757


How does jcl act on code(if you take a cobol program)?

692


Must tape dataset definitions include vol=ser specifications?

953


What is jcl in mainframe, and how many types of jcl statements are there for a job?

616






How dummy is used in jcl?

626


Are there any set of rules for the names of the steps used in a job? What are they?

600


WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375

1017


which utility is used to sort a file in jcl?

735


Give the syntax of job specifying jcl statement.

622


We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?

1753


What is the purpose of the dd keylen parameter?

701


Explain the function of job statement in jcl?

633


What is the use of symbol // in jcl?

910


A dd statement consists of 4 fields. Name them?

908