IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Execution of a particular step


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Kiranmayee

New User


Joined: 09 Jan 2008
Posts: 25
Location: India

PostPosted: Tue Oct 21, 2008 3:30 pm
Reply with quote

Hi

I wrote the following code to execute a particular step in a JCL

Code:

//STEP0001 EXEC PGM=IEBEDIT
//SYSUT1   DD   DISP=SHR,DSN=GENERAL.JCL(DELETE2)
//SYSUT2   DD   SYSOUT=(*,INTRDR)
//SYSPRINT DD   SYSOUT=*
//SYSIN    DD   DATA
EDIT TYPE=INCLUDE,STEPNAME=STEP20
/*


I am getting RC=4 with the following description

1 IEBEDIT LISTING
-EDIT TYPE=INCLUDE,STEPNAME=STEP20
IEB010I INVALID OPERATION CODE
IEB024I 4 WAS HIGHEST SEVERITY CODE

and STEP20 is not getting executed. Can any one please help me out?
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Tue Oct 21, 2008 3:37 pm
Reply with quote

look at the iebedit manual to find out the right format and the right parameters
for the control cards
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Tue Oct 21, 2008 4:42 pm
Reply with quote

5.0 IEBEDIT (Edit Job Stream) Program.
Back to top
View user's profile Send private message
mmwife

Super Moderator


Joined: 30 May 2003
Posts: 1592

PostPosted: Tue Oct 21, 2008 6:11 pm
Reply with quote

If STEP020 is not a PROC, why not exec the job that STEP020 is in with the following in the job card:

RESTART=STEP020,COND=(0,LE)
Back to top
View user's profile Send private message
gcicchet

Senior Member


Joined: 28 Jul 2006
Posts: 1702
Location: Australia

PostPosted: Wed Oct 22, 2008 11:22 am
Reply with quote

Hi,

try starting the parameter in col2.


Gerry
Back to top
View user's profile Send private message
Kiranmayee

New User


Joined: 09 Jan 2008
Posts: 25
Location: India

PostPosted: Wed Oct 22, 2008 3:57 pm
Reply with quote

Hi Gerry,

After writing the parameters from col 2. I worked correctly. Thanks very much.


Kiranmayee.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Return codes-Normal & Abnormal te... JCL & VSAM 7
No new posts Capturing Job Execution Information All Other Mainframe Topics 3
No new posts How to append a PS file into multiple... JCL & VSAM 3
No new posts convert file from VB to FB and use tr... DFSORT/ICETOOL 8
No new posts Forcing a step to run (even if abended) JCL & VSAM 8
Search our Forums:

Back to Top