View previous topic :: View next topic |
Author |
Message |
mainframebeginner Beginner
Joined: 11 May 2010 Posts: 14 Topics: 5
|
Posted: Tue Jun 01, 2010 1:04 pm Post subject: XMIT Issue |
|
|
Hi All,
I am encountering an issue with XMIT command in my mainframe.
My command goes like this : XMIT N4.RECEIVERS-NID DA (PDS Name (JobNAme)
Here N4 represents TSO82 (AE82 in other words).
Can any one please help me which value represents AE84?? i mean is it N6 or N8 or N**
Any response would be much appreciated. |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Tue Jun 01, 2010 1:28 pm Post subject: Re: XMIT Issue |
|
|
mainframebeginner wrote: | Can any one please help me which value represents AE84?? i mean is it N6 or N8 or N**
Any response would be much appreciated. |
Huh what is AE84? btw did you try typing TSO HELP XMIT at the command prompt and see what it brings up?
Kolusu |
|
Back to top |
|
|
dbzTHEdinosauer Supermod
Joined: 20 Oct 2006 Posts: 1411 Topics: 26 Location: germany
|
Posted: Tue Jun 01, 2010 1:29 pm Post subject: |
|
|
the response in the other forum is applicable.
you need to speak to your sys group, as they are the ones who know the naming conventions on your system. _________________ Dick Brenholtz
American living in Varel, Germany |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Tue Jun 01, 2010 1:35 pm Post subject: |
|
|
dbzTHEdinosauer wrote: | the response in the other forum is applicable.
you need to speak to your sys group, as they are the ones who know the naming conventions on your system. |
mainframebeginner,
Read this
http://www.mvsforums.com/helpboards/viewtopic.php?t=8248
Kolusu |
|
Back to top |
|
|
mainframebeginner Beginner
Joined: 11 May 2010 Posts: 14 Topics: 5
|
Posted: Tue Jun 01, 2010 3:03 pm Post subject: |
|
|
i will delete my thread from other forum.....typo in my last responce |
|
Back to top |
|
|
Aarti Beginner
Joined: 02 Sep 2015 Posts: 3 Topics: 1
|
Posted: Thu Sep 03, 2015 12:20 am Post subject: |
|
|
I am trying for a JCL to receive dataset on one node which is transferred by using XMIT command from another node.
Code: |
//**********************************************************
//RECEIVE EXEC PGM=IKJEFT01,
// REGION=5000K,
// DYNAMNBR=30
//FROMFILE DD DSN=XXX.YYY.N.OUTPUT.NODE1,
// DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
RECEIVE +
INDDNAME(FROMFILE)
DATASET('XXX.YYYY.OUTPUT.NODE2')
/*
**************************** Bottom of Data ************* |
This code throwing error - XXX.YYY.N.OUTPUT.NODE1 NOT FOUND
can any one please help on this??
Thanks!!! |
|
Back to top |
|
|
William Collins Supermod
Joined: 03 Jun 2012 Posts: 437 Topics: 0
|
Posted: Thu Sep 03, 2015 1:34 am Post subject: |
|
|
You should always include the message reference. You should always look up the messages reference. That message is the system's way of telling you the dataset is not in the catalog(s) on the node the job is running on. |
|
Back to top |
|
|
Aarti Beginner
Joined: 02 Sep 2015 Posts: 3 Topics: 1
|
Posted: Thu Sep 03, 2015 2:48 am Post subject: |
|
|
Hi William
This dataset will not be catalog on Node2 but it will be catalog in node1. I want this dataset to bring from node1 to node2
I am trying XMIT this dataset from node1 and using JCL (code in previous post) for RECEIVING this dataset on node2. |
|
Back to top |
|
|
Nic Clouston Advanced
Joined: 01 Feb 2007 Posts: 1075 Topics: 7 Location: At Home
|
Posted: Thu Sep 03, 2015 6:26 am Post subject: |
|
|
Why are you tagging onto a 5 year-old thread. Always start a new thread for your own problems. Also, use the code tags to present your data, code and everything else from the mainframe.
Also, Also, nothing was "thrown". You could have said 'it gave this error...' _________________ Utility and Program control cards are NOT, repeat NOT, JCL. |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Thu Sep 03, 2015 9:39 am Post subject: |
|
|
Aarti wrote: | I am trying for a JCL to receive dataset on one node which is transferred by using XMIT command from another node. |
Go to option 7.3 from ISPF and look for the 2 variables and make sure that your XMIT and Receive Commands match the zsysnode names.
Code: |
ZSYSNODE S N --------
ZSYSPLEX S N -----
|
_________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
|
|