Re: RO command query

2008-12-30 Thread Lizette Koehler
Tommy,
It always helps if you provide the full question rather than a partial one.
That way we can help better answer your question.

So, is this a SYSTEM REXX that you are using to route a command with and
retrieve the information?  If so, when you say you get nothing back - what
does that mean?  Have you used SAY statements or TRACE function in REXX to
see how the code works?

That the stem vars are empty?  Or that you are seeing an error in SYSLOG for
your REXX or 

Lizette


 
 acutally, I want to display all sysplex member tape information, but
 it didn't work fine. After the command issued, nothing display and the
 command time out finally.
 
 CMDRESULT=AXRCMD('RO MOSYSD,D SMS,LIB(ALL),DETAIL','OUTPUTVAR.',100);
 C=1
 connectid= 'FIRSTLINE';
 IF CMDRESULT =0 THEN
 DO
  MYRESULT=AXRMLWTO(OUTPUTVAR.1,'CONNECTID','C');
   DO C = 2 TO  OUTPUTVAR.0
  LINE = 'SYSu '||left(outputvar.c,80)
  MYRESULT=AXRMLWTO(line,'CONNECTID','D');
  IF MyResult =0 THEN
  EXIT 1;
  END;
 CALL AXRMLWTO , 'CONNECTID','E';
 END ;
 
 On Tue, Dec 30, 2008 at 7:31 AM, Lizette Koehler
 stars...@mindspring.com wrote:
  It looks like there is a space between the comma and the D A,L.
 
  Have you tried it without the space?   RO LPAR2,D A,L
 
  Lizette
 
 
 
 
 
  hi all,
  Why the RO command does not work properly? is there any changed after
  upgrade to z/os 1.9.
  In our shop there are three members or LPARs connected to sysplex,
  when I issue the following command under the SDSF from LPAR1, nothing
  display from LPAR1 console.
  RO LPAR2, D A,L
 
 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: RO command query

2008-12-30 Thread Mark Zelden
Tommy,

I realize your English may not be the best, but Lizette is correct.  How 
would have anyone realized your question was related to sysrexx? As
a matter of fact, you asked if anything change in z/OS 1.9 with the RO
command via SDSF. 

Is this an SDSF issue or System REXX issue? 

If SDSF, there could be several reasons I can think of off the top of
my head why the display doesn't come back to you.  You could have
a duplicate EMCS console name in SDSF active on another LPAR 
in the sysplex, your console response delay could be set at 0 or
you may not be authorized for ULOG.  You control the first 2 with
SDSF settings (see the OPTIONS pull down menu). ULOG authority
comes from ISFPARMS / ISFPRMxx / security software. 

If this is only system REXX issue, there is an example of using
AXRMLWTO in the MVS Authorized Assembler Services Guide:
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2A881/31.5?SHELF=IEA2BK81DT=20080120225118

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:mark.zel...@zurichna.com
z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html


On Tue, 30 Dec 2008 07:53:42 -0500, Lizette Koehler
stars...@mindspring.com wrote:

Tommy,
It always helps if you provide the full question rather than a partial one.
That way we can help better answer your question.

So, is this a SYSTEM REXX that you are using to route a command with and
retrieve the information?  If so, when you say you get nothing back - what
does that mean?  Have you used SAY statements or TRACE function in REXX to
see how the code works?

That the stem vars are empty?  Or that you are seeing an error in SYSLOG for
your REXX or 

Lizette



 acutally, I want to display all sysplex member tape information, but
 it didn't work fine. After the command issued, nothing display and the
 command time out finally.

 CMDRESULT=AXRCMD('RO MOSYSD,D SMS,LIB(ALL),DETAIL','OUTPUTVAR.',100);
 C=1
 connectid= 'FIRSTLINE';
 IF CMDRESULT =0 THEN
 DO
  MYRESULT=AXRMLWTO(OUTPUTVAR.1,'CONNECTID','C');
   DO C = 2 TO  OUTPUTVAR.0
  LINE = 'SYSu '||left(outputvar.c,80)
  MYRESULT=AXRMLWTO(line,'CONNECTID','D');
  IF MyResult =0 THEN
  EXIT 1;
  END;
 CALL AXRMLWTO , 'CONNECTID','E';
 END ;

 On Tue, Dec 30, 2008 at 7:31 AM, Lizette Koehler
 stars...@mindspring.com wrote:
  It looks like there is a space between the comma and the D A,L.
 
  Have you tried it without the space?   RO LPAR2,D A,L
 
  Lizette
 
 
 
 
 
  hi all,
  Why the RO command does not work properly? is there any changed after
  upgrade to z/os 1.9.
  In our shop there are three members or LPARs connected to sysplex,
  when I issue the following command under the SDSF from LPAR1, nothing
  display from LPAR1 console.
  RO LPAR2, D A,L
 
 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: RO command query

2008-12-29 Thread Daniel Allen
If you are getting an IEE311I message, you have a space between the comma
and the command.

On Mon, Dec 29, 2008 at 3:06 PM, Tommy Tsui tommyt...@gmail.com wrote:

 hi all,
 Why the RO command does not work properly? is there any changed after
 upgrade to z/os 1.9.
 In our shop there are three members or LPARs connected to sysplex,
 when I issue the following command under the SDSF from LPAR1, nothing
 display from LPAR1 console.
 RO LPAR2, D A,L

 thanks and regards

 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: RO command query

2008-12-29 Thread Lizette Koehler
It looks like there is a space between the comma and the D A,L.

Have you tried it without the space?   RO LPAR2,D A,L

Lizette



 
 
 hi all,
 Why the RO command does not work properly? is there any changed after
 upgrade to z/os 1.9.
 In our shop there are three members or LPARs connected to sysplex,
 when I issue the following command under the SDSF from LPAR1, nothing
 display from LPAR1 console.
 RO LPAR2, D A,L
 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: RO command query

2008-12-29 Thread Tommy Tsui
acutally, I want to display all sysplex member tape information, but
it didn't work fine. After the command issued, nothing display and the
command time out finally.

CMDRESULT=AXRCMD('RO MOSYSD,D SMS,LIB(ALL),DETAIL','OUTPUTVAR.',100);
C=1
connectid= 'FIRSTLINE';
IF CMDRESULT =0 THEN
DO
 MYRESULT=AXRMLWTO(OUTPUTVAR.1,'CONNECTID','C');
  DO C = 2 TO  OUTPUTVAR.0
 LINE = 'SYSu '||left(outputvar.c,80)
 MYRESULT=AXRMLWTO(line,'CONNECTID','D');
 IF MyResult =0 THEN
 EXIT 1;
 END;
CALL AXRMLWTO , 'CONNECTID','E';
END ;

On Tue, Dec 30, 2008 at 7:31 AM, Lizette Koehler
stars...@mindspring.com wrote:
 It looks like there is a space between the comma and the D A,L.

 Have you tried it without the space?   RO LPAR2,D A,L

 Lizette





 hi all,
 Why the RO command does not work properly? is there any changed after
 upgrade to z/os 1.9.
 In our shop there are three members or LPARs connected to sysplex,
 when I issue the following command under the SDSF from LPAR1, nothing
 display from LPAR1 console.
 RO LPAR2, D A,L


 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html