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

Skip the step if file is empty


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

New User


Joined: 20 Mar 2005
Posts: 13
Location: Bangalore

PostPosted: Sun May 15, 2005 5:50 pm
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
mmwife

Super Moderator


Joined: 30 May 2003
Posts: 1592

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

Hi,

Try these 2 links:

ibmmainframes.com/viewtopic.php?t=590&highlight=empty+file
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: 363
Location: Earth

PostPosted: Mon May 16, 2005 11:00 am
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
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

Senior Member


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

PostPosted: Tue May 17, 2005 3:11 pm
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
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 Compare 2 files and retrive records f... DFSORT/ICETOOL 0
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
Search our Forums:

Back to Top