Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
Skip the step if file is empty

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> JCL
Author Message
rtalapaneni

New User


Joined: 20 Mar 2005
Posts: 14
Location: Bangalore

PostPosted: Sun May 15, 2005 5:50 pm    Post subject: Skip the step if file is empty
Reply with quote

Let assume three steps is there in JCL . If file1 is empty u have to skip third step. let me know how to do ....
Back to top
View user's profile Send private message
References
mmwife

Super Moderator


Joined: 30 May 2003
Posts: 1504

PostPosted: Sun May 15, 2005 8:44 pm    Post subject:
Reply with quote

Hi,

Try these 2 links:

http://ibmmainframes.com/viewtopic.php?t=590&highlight=empty+file
http://ibmmainframes.com/viewtopic.php?t=760&highlight=empty+file

P.S. Try using the SEARCH Facility before you post.
Back to top
View user's profile Send private message
subhasis_50

Moderator


Joined: 09 Mar 2005
Posts: 367
Location: Earth

PostPosted: Mon May 16, 2005 11:00 am    Post subject: Re: Skip the step if file is empty
Reply with quote

Hi,
You can do this by using cond parameter. Introduce a IDCAM step to check the file, if it empty then idcam step will return 4. Based on that you can bypass your step no 3.
//STEP01 EXEC PGM=IDCAMS,COND=(0,NE)
//SYSPRINT DD SYSOUT=*
//FILE1 DD DSN=TEST.DATA,DISP=SHR
//SYSUDUMP DD SYSOUT=*
//SYSIN DD *
PRINT INFILE(FILE1) -
DUMP COUNT(1)
/*
//* DON'T RUN STEP02 IF FILE IS EMPTY
//* A RETURN CODE OF 4 WOULD INDICATE NO RECORDS WERE FOUND
//STEP02 EXEC PGM=WHATEVER,COND=(4,EQ,STEP01)

Thanks
Subhasis
Back to top
View user's profile Send private message
ssowjanya

New User


Joined: 29 Apr 2005
Posts: 13

PostPosted: Tue May 17, 2005 3:02 pm    Post subject:
Reply with quote

Hi subhasis_50,
Not taking into consideration of COND parameter, first of all how do we know whether the file is empty or not in jcl
Back to top
View user's profile Send private message
priyesh.agrawal

Global Moderator


Joined: 28 Mar 2005
Posts: 1509
Location: Chicago, IL

PostPosted: Tue May 17, 2005 3:11 pm    Post subject: Re: Skip the step if file is empty
Reply with quote

Check the links.....

http://www.ibmmainframes.com/viewtopic.php?t=590&highlight=empty

http://www.ibmmainframes.com/viewtopic.php?t=760&highlight=empty

Hope this help you...

Regards,

Priyesh.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> JCL All times are GMT + 6 Hours
Page 1 of 1