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
I need exexution process for JCL programs
Is condition checking possible in jcl?
how to do automated restart when a job abends?
How can the attributes of one sms dataset be copied to another dataset?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
when can a job time-out occur? How to overcome that?
What is the syntax of JCL statement?
In job processing, what happens in execution stage?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
How to override loadlib?
I have mainpgm(abc) this is the only cobol pgm(non-db2).And this pgm calling subpgm name "acd" this also only cobol(non- Db)and this pgm calling some other subpgm this pgm has cobol-db2 pgm. 1) IF you calling static mode how to run and how to compile? 2) IF you calling dynamic mode how to run and how to compile? plz suggestion me.
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
What is jcl in mainframe?
How does the jcl specify the job to os?
what is “Cond= even” and “Cond=only”?