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

To find whether a file already exists or not


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

New User


Joined: 28 Jun 2005
Posts: 4
Location: India

PostPosted: Fri Sep 16, 2005 5:51 pm
Reply with quote

Hi
My jcl has one program step that uses an input file. This input file will be sent by another job through FTP step.

In the absence of this input file my jcl should not return jcl error but it should bypass the program step and should end normally. Also this job should create a new file if it was not already there.

Please let me know how to do this

Thanks in Advance

Regards,
Sriram
Back to top
View user's profile Send private message
MGIndaco

Active User


Joined: 10 Mar 2005
Posts: 432
Location: Milan, Italy

PostPosted: Fri Sep 16, 2005 5:56 pm
Reply with quote

I suggest you to search befor posting.
The solution is using IDCAMS:
Code:
//STEP010I EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//SYSIN    DD *
 LISTCAT ENTRIES(yourfile)
//STEP020P EXEC PGM=yourprogram,COND=(0,NE,STEP010I)
....


I hope in this help
Back to top
View user's profile Send private message
sriramsamy

New User


Joined: 28 Jun 2005
Posts: 4
Location: India

PostPosted: Fri Sep 16, 2005 6:13 pm
Reply with quote

Thanks a lot!

Your solution is of great help to me!


Best Regards,
Sriram
Back to top
View user's profile Send private message
ikumar

New User


Joined: 02 Aug 2005
Posts: 81

PostPosted: Sat Sep 17, 2005 1:38 am
Reply with quote

Hi Sriram,

Also you can check the file existence as given below,

//EXIST EXEC IDCAMS
PRINT INDATASET('dataset-name') CHARACTER COUNT(1)

If the dataset does not exist, you get RC=0012.
you can check for RC using IF THEN ELSE logic in the JCL...
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 Binary File format getting change whi... All Other Mainframe Topics 7
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
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
Search our Forums:

Back to Top