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

How to find the nodes connected to the system


IBM Mainframe Forums -> TSO/ISPF
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
ananth86

New User


Joined: 10 Jun 2009
Posts: 59
Location: Hyderabad

PostPosted: Wed Oct 07, 2009 8:00 pm
Reply with quote

I want to XMIT a dataset from my system. How to find the nodes (nodename) connected to my system?

Is there any command for this and are they different for both Jes2/Jes3?

Please help me
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Wed Oct 07, 2009 8:14 pm
Reply with quote

Go ask your site support people, they know what's what - hopefully
Back to top
View user's profile Send private message
nevilh

Active User


Joined: 01 Sep 2006
Posts: 262

PostPosted: Wed Oct 07, 2009 8:20 pm
Reply with quote

If in ISPF you issue the TSO PARMLIB command it will show you the nodes defined to TSO and their Aliases. Just because they are defined does not mean they exist . If you go int SDSF and issue the NO command it will show you the nodes defined to JES2.
Back to top
View user's profile Send private message
ananth86

New User


Joined: 10 Jun 2009
Posts: 59
Location: Hyderabad

PostPosted: Wed Oct 07, 2009 8:21 pm
Reply with quote

yes I got a command from some support guy.
Code:
*S BDT,S SNA,ST L
he gave me this..

I googled it and didnt get clarity abt this command. Can somebody explain this command or any reference to thios command
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: Wed Oct 07, 2009 8:27 pm
Reply with quote

JES3 Commands manual *START BDT has the syntax.
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2546
Location: Silicon Valley

PostPosted: Wed Oct 07, 2009 9:19 pm
Reply with quote

Quote:
I want to XMIT a dataset from my system. How to find the nodes (nodename) connected to my system?


You also need to know the userid in order to XMIT something, so just knowing the nodenames is not enough. Almost useless, actually.

I have never heard it worded like this: "xmit from my system"... always "XMIT to a system". Presumably, you are XMIT'ing to someone... ask them what their nodes and userids are.
Back to top
View user's profile Send private message
ananth86

New User


Joined: 10 Jun 2009
Posts: 59
Location: Hyderabad

PostPosted: Wed Oct 07, 2009 10:01 pm
Reply with quote

Quote:

I have never heard it worded like this: "xmit from my system"... always "XMIT to a system".


Yes, your are right!!!!
Thanks I ve Xmit-ed successfully. But, i didnt find any refernce for this command "*S BDT,S SNA,ST L". Issuing this command gave me the nodes connected with my system, I m curious to know abt the parameters used here
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: Wed Oct 07, 2009 10:47 pm
Reply with quote

The '*S BDT' refers to a JES3 command; everything after the comma is the BDT command. Google is your friend -- the BDT commands manual is on the first page when you search for 'MVS/BDT: Transaction and Command Reference' which is referenced in the JES3 command manual under *START (*S) BDT.

S SNA,ST L tells BDT to provide the status of the SNA manager and list the active nodes as well.
Back to top
View user's profile Send private message
PeD

Active User


Joined: 26 Nov 2005
Posts: 459
Location: Belgium

PostPosted: Wed Oct 07, 2009 11:17 pm
Reply with quote

Two ways ( at least )

- in REXX ===>> SAY SYSVAR('SYSNODE')
- via the Data Areas ==>> check my post in
www.ibmmainframes.com/post-167760.html

Regards

Pierre
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2546
Location: Silicon Valley

PostPosted: Thu Oct 08, 2009 3:29 am
Reply with quote

I think the original post was for "How to find the nodes (nodename) connected to my system? " and not for your own node.
Back to top
View user's profile Send private message
PeD

Active User


Joined: 26 Nov 2005
Posts: 459
Location: Belgium

PostPosted: Thu Oct 08, 2009 10:12 am
Reply with quote

Yes, Pedro.
Maybe.
But the sentence is not clear
Quote:
want to XMIT a dataset from my system
.... for me at least
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Thu Oct 08, 2009 12:08 pm
Reply with quote

Quote:
If in ISPF you issue the TSO PARMLIB command
Please note ... not every RACF user is allowed to issue this command.
Back to top
View user's profile Send private message
nevilh

Active User


Joined: 01 Sep 2006
Posts: 262

PostPosted: Thu Oct 08, 2009 5:29 pm
Reply with quote

Quote:
Please note ... not every RACF user is allowed to issue this command.
True but not every user is allowed to access SDSF and not every user is allowed to submit jobs . By this logic we should not give any answers as there will always be USER that is not allowed to do what we suggest
Back to top
View user's profile Send private message
ShameemOracle

New User


Joined: 23 Sep 2009
Posts: 15
Location: bangalore

PostPosted: Fri Oct 09, 2009 5:03 pm
Reply with quote

ananth86 wrote:
How to find the nodes (nodename) connected to my system?


You can see the connected NODES in following panel [if u have access in respective SDSF RACF profiles]

Navigate to SDSF -> NODES
or
TSO ISF NODES from any ISPF panel

Hope the following commands will be helpful
$D NODE(ZOSA) -> display info about node ZOSA [issue from console]

$D CONNECT,NODEA=ZOSA
Back to top
View user's profile Send private message
ananth86

New User


Joined: 10 Jun 2009
Posts: 59
Location: Hyderabad

PostPosted: Fri Oct 09, 2009 6:45 pm
Reply with quote

[quote="ShameemOracle
You can see the connected NODES in following panel [if u have access in respective SDSF RACF profiles]

[/quote]

We dont have (dont have access) to SDSF in our shop, rather we use Flasher as our Spool software.

Any how the command " *S BDT,S SNA,ST L " worked fine for me and i was able to XMIT the dataset to a system connected to mine and I received the dataset as well.

Thank u very much for all ur help icon_biggrin.gif icon_biggrin.gif
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 -> TSO/ISPF

 


Similar Topics
Topic Forum Replies
No new posts Sysplex System won't IPL at DR site I... All Other Mainframe Topics 2
No new posts To find whether record count are true... DFSORT/ICETOOL 6
No new posts How to delete a user's alias from the... JCL & VSAM 11
No new posts Find the size of a PS file before rea... COBOL Programming 13
No new posts Insert system time/date (timestamp) u... DFSORT/ICETOOL 5
Search our Forums:

Back to Top