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

Need to create file with Dynamic Name in BMP triggered JCL


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

New User


Joined: 05 Aug 2014
Posts: 1
Location: INDIA

PostPosted: Wed May 25, 2016 9:45 am
Reply with quote

Hi I want to use Dynamic Name while creating the dataset in BMP triggered JCL.

For Instance, I want to create dataset as

userid.report

I have userid stored in a file, but how to use while creating dataset.
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3053
Location: NYC,USA

PostPosted: Wed May 25, 2016 8:54 pm
Reply with quote

Unless there is any better way, you will have to write a program to create dynamic file name and formulate your JCL in the same program and use INTRDR to trigger that JOB. Or check with Scheduling team if they have something they can help with.
Back to top
View user's profile Send private message
rajesh1183

New User


Joined: 07 Jan 2008
Posts: 98
Location: Hyderabad

PostPosted: Thu May 26, 2016 3:12 pm
Reply with quote

Can you try the below:

Code:

// SET ID=ABCD
//STEP1    EXEC PGM=IDCAMS
//SYSPRINT DD   SYSOUT=*
//SYSOUT   DD   SYSOUT=*
//SYSIN    DD   *
 SET ID=EFGH
/*
//*
//STEP2    EXEC PGM=IEFBR14
//SYSPRINT DD   SYSOUT=*
//SYSOUT   DD  SYSOUT=*
//FILENAME DD DSN=&ID..FILE.NAME,
//         DISP=(NEW,CATLG,DELETE),
//         LRECL=80,RECFM=FB,
//         SPACE=(TRKS,(10,10),RLSE)
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3053
Location: NYC,USA

PostPosted: Thu May 26, 2016 7:00 pm
Reply with quote

Rajesh, TS has a file in the input with many userids.
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2455
Location: Hampshire, UK

PostPosted: Fri May 27, 2016 2:19 am
Reply with quote

Also, the &ID is resolved at job submission time not as each step is executed.

You could, perhaps, try dynamic allocation using BPXWDYN. Search forum, documentation, Google for examples.
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 5
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