View previous topic :: View next topic |
Author |
Message |
sangeetha Beginner
Joined: 05 Jan 2005 Posts: 1 Topics: 1
|
Posted: Wed Jan 05, 2005 6:56 am Post subject: How to XMIT to multiple persons |
|
|
I have a file that I want to XMIT to more than one persons. I don't want to use something like the following statement and list out the IDs explicitly in the XMIT statement
XMIT (sys.id1, sys.id2, sys.id3) ds(dataset-name)
I want to list out my IDs in a PARMLIB member and want my XMIT to take the IDs implicitly from there.
How do I do this? |
|
Back to top |
|
|
nevilh Beginner
Joined: 11 Aug 2004 Posts: 115 Topics: 0
|
Posted: Wed Jan 05, 2005 9:15 am Post subject: |
|
|
allocate a sequential dataset with the name userid.names.text (must have this name)
put the required parameters in dataset (the following example is take from the tso users guide)
:nick.DISTRIB :name. Distribution List
:list. BILL
HOWARD
RUTH
SUE
TOM
:nick.TOM :name. Tom Jones
:node. PLPSC
:userid. D01TXJ
:logname. INM.LOG.DATA
:nick.SUE :name. Susan Smith
:node. ABCXYZ
:userid. A11SXS
:nick.BILL :name. Bill West
:node. TDCSYS5
:userid. H01WWW
:nick.RUTH :name. Ruth Ryan
:node. ARDNIA
:userid. T35RYR
Then you should be able to issue the command:
xmit distrib .......... |
|
Back to top |
|
|
|
|