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

FTP parameter card


IBM Mainframe Forums -> All Other Mainframe Topics
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
naive

New User


Joined: 26 Apr 2005
Posts: 46
Location: LA

PostPosted: Thu Jun 23, 2005 4:00 am
Reply with quote

Hi guys
i need some quick help with an FTP parameter card. In the card, the destination filename is to have a date tag. (shown below)

ASCII
PUT 'Source Mainframe DS' AUDT.20050608.CTL
QUIT

This tag is to change every day. But that would mean changing the FTP card every day. What is the best way of doing this? (Other than by writing a COBOL/Rexx program?)
Can we use DD name in the FTP card by some means? (then we could simply do a &DATE thing in the JCL.

Thanx in advance!!
Back to top
View user's profile Send private message
superk

Global Moderator


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

PostPosted: Thu Jun 23, 2005 6:50 am
Reply with quote

Well, the first obvious choice is to name your dataset the same as the required target file (i.e. AUDT.20050608.CTL). However, I'm sure you realize that that's an invalid dataset name, so that option won't work.

In your post, you ask
Quote:

Can we use DD name in the FTP card by some means?

The answer is, of course, yes:
Code:

>put //DD:DDNAME AUDT.20050608.CTL

but I fail to see where that will help. I do know that if you omit the target filename, FTP will use the DDNAME as the filename, but that's only up to 8 characters.

Some utility/program/REXX exec/CLIST will have to be used to generate the target filename with the date value. Your options here are wide open, depending on what you prefer to use.
Back to top
View user's profile Send private message
naive

New User


Joined: 26 Apr 2005
Posts: 46
Location: LA

PostPosted: Thu Jun 23, 2005 7:47 am
Reply with quote

Ok, the target filename may be modified to AUDT.D050608.CTL, but then will I be able to use DD name in the card to signify the target filename??
Programming will solve it of course, but my developer is complaining!!
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 -> All Other Mainframe Topics

 


Similar Topics
Topic Forum Replies
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Using the Jobname parameter in a Qual... ABENDS & Debugging 1
No new posts Demand with DEADLINE TIME parameter CA Products 4
No new posts Option DYNALLOC second parameter. DFSORT/ICETOOL 11
No new posts Generate output lines (SYSIN card for... DFSORT/ICETOOL 4
Search our Forums:

Back to Top