View previous topic :: View next topic |
Author |
Message |
js01 Beginner
Joined: 13 Oct 2005 Posts: 84 Topics: 32 Location: INDIA
|
Posted: Tue Oct 31, 2006 7:01 pm Post subject: File transmit issue |
|
|
Can any one please advise where the USer id XYZWASS is created with the dataset, Acutally we are receiving file from upstream system and puting into 'TEST.FINANCE.TRAN'
//Step01 EXEC PGM=IKJEFT01
//SYSTSPRT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SNAPDUMP DD SYSOUT=*
//SYSTSIN DD *
RECEIVE USERID(XYZWASS)
DSNAME('TEST.FINANCE.TRAN') OLD
END
/*
//*
Thank you in advance for your help. |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Tue Oct 31, 2006 7:22 pm Post subject: |
|
|
js01,
The dataset will be created as XYZWASS.TEST.FINANCE.TRAN
Code: |
DSNAME You may specify the name of the data set to be
used to contain the file being received. This
dataset will be created if it does not exist.
The dataset name will default to the name of
the transmitted data set (the sender's prefix
will be replaced with your prefix). If this
default data set already exists and is a
sequential data set and you have not specified
a disposition (SHR/MOD/OLD/NEW), then RECEIVE
will prompt you for your permission to overwrite
the data set. If the default data set is a
partitioned data set, then identically named
members will be automatically replaced.
|
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
nevilh Beginner
Joined: 11 Aug 2004 Posts: 115 Topics: 0
|
Posted: Wed Nov 01, 2006 9:02 am Post subject: |
|
|
The userid parameter will not be used as a prefix for the dsname The dsname parameter is enclosed in quotes. By using the the userid parameter you are just asking the system to RECEIVE the data that was transmitted to user XYZWASS |
|
Back to top |
|
 |
js01 Beginner
Joined: 13 Oct 2005 Posts: 84 Topics: 32 Location: INDIA
|
Posted: Wed Nov 01, 2006 1:54 pm Post subject: |
|
|
Thank you Kolus/nevilh for your qucik responce.
But question was where USer id is been created and defined? what is mean by Userid??
Please advise |
|
Back to top |
|
 |
nevilh Beginner
Joined: 11 Aug 2004 Posts: 115 Topics: 0
|
Posted: Thu Nov 02, 2006 1:58 am Post subject: |
|
|
The userid has not been created or defined in fact the userid does not have to exist . In this case the userid is just logical name that the person who transmitted the data chose to use. |
|
Back to top |
|
 |
js01 Beginner
Joined: 13 Oct 2005 Posts: 84 Topics: 32 Location: INDIA
|
Posted: Tue Nov 07, 2006 1:25 pm Post subject: |
|
|
All,
If i want to pick the new file from other region that i do not know the node name and userid,just i know the dataset name ,how i can i pick this file with XMIT option.
Can you please help me |
|
Back to top |
|
 |
|
|