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

Keeping Mainframe PS file naming convetion as it-is in MPUT


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

New User


Joined: 01 Apr 2009
Posts: 4
Location: usa

PostPosted: Fri Oct 23, 2009 8:40 pm
Reply with quote

Hi, I'm trying to send multiple sequential files from Mainframe to a local windows based server. for eg. I've following 3 files on mainframe
HLQ.PROD.FILE1
HLQ.PROD.FILE2
HLQ.PROD.FILE3

I'm using the below ftp script..
Host server name
User-ID
password
LCD 'HLQ.PROD' -> First two qualifiers of the Mainframe sequential files
CD '\Test' -> C:\TEST a location on my windows machine
PROMPT INTERACTIVE
MPUT *
QUIT

FTP is successfull, but the file names on my local machine are
FILE1
FILE2
FILE3
Can some one tell me how can we get the exact mainframe file names as it is (as mentioned below) on our local machine by using MPUT
HLQ.PROD.FILE1
HLQ.PROD.FILE2
HLQ.PROD.FILE3

Thanks in advance !!
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Fri Oct 23, 2009 9:01 pm
Reply with quote

What you want to do cannot be done. MPUT only transfers the names at the level you are qualified to. You could individually transfer each file using the fully qualified name, but if you want to use MPUT you cannot get the fully qualified name on the remote side, AFAIK.
Back to top
View user's profile Send private message
GOWTHAM

New User


Joined: 01 Apr 2009
Posts: 4
Location: usa

PostPosted: Sat Oct 24, 2009 2:05 am
Reply with quote

I figured it out... :-)
Once we have the FILE1, FILE2, FILE3 etc in my local machine at C:\temp directory... I was able to rename all those files by prefixing the HLQ & Second level qualifier with the help of a DOS command...

FOR /F "tokens=* delims= " %a IN ('DIR /b *.*') DO REN %a HLQ.PROD.%a

Thanks for your quick response Robert !!
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 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
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
Search our Forums:

Back to Top