Re: Question About File RDR

2010-05-13 Thread Dave
Sergio, If you used EXECIO, you may need the BUFFER parameter if you have many reader files.David Lewis -Original Message- From: Sergio Lima <sergiovm...@hotmail.com>Sent: May 12, 2010 1:52 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: Question About File RDR Hello List,Thanks ver

Question About File RDR

2010-05-12 Thread Sergio Lima
Hello List, I need do a REXX here, and unfortunatelly I forgot how do something. The REXX is very easy, and is like this : 3 *-* DO FOREVER 4 *-* 'WAKEUP (RDR '

Re: Question About File RDR

2010-05-12 Thread Hughes, Jim
Of Sergio Lima Sent: Wednesday, May 12, 2010 9:35 AM To: IBMVM@LISTSERV.UARK.EDU Subject: Question About File RDR Hello List, I need do a REXX here, and unfortunatelly I forgot how do something. The REXX is very easy, and is like this : 3 *-* DO FOREVER

Re: Question About File RDR

2010-05-12 Thread Scott Rohling
'PIPE CP QUERY RDR * ALL | DROP FIRST | SPECS w10 1 | STEM FILENAMES.' If rc 0 Then Return Do i = 1 to filenames.0 filename = filenames.i /* do whatever here */ End This handles more than one file being in the reader too... Scott Rohling On Wed, May 12, 2010 at 7:34 AM, Sergio Lima

Re: Question About File RDR

2010-05-12 Thread Sergio Lima
+++? DMSREX460E Error 13 running EXPLIST EXEC, line 8: Invalid character in program Thanks, Sergio Date: Wed, 12 May 2010 09:41:58 -0400 From: jim.hug...@doit.nh.gov Subject: Re: Question About File RDR To: IBMVM

Re: Question About File RDR

2010-05-12 Thread Scott Rohling
-- Date: Wed, 12 May 2010 09:41:58 -0400 From: jim.hug...@doit.nh.gov Subject: Re: Question About File RDR To: IBMVM@LISTSERV.UARK.EDU “PIPE CP Q RDR ALL | drop 1 | take 1 | specs w 10 1 | var $name tracking “ This may work. Jim Hughes 603-271-5586 It is fun

Re: Question About File RDR

2010-05-12 Thread Sergio Lima
Hello, Very good, is working ... If We need get other fields, like the number of the file, I need put 2 specs command ? Thanks Sergio Date: Wed, 12 May 2010 07:50:14 -0600 From: scott.rohl...@gmail.com Subject: Re: Question About File RDR To: IBMVM@LISTSERV.UARK.EDU Put

Re: Question About File RDR

2010-05-12 Thread Bob Bates
...@listserv.uark.edu] On Behalf Of Sergio Lima Sent: Wednesday, May 12, 2010 8:35 AM To: IBMVM@LISTSERV.UARK.EDU Subject: Question About File RDR Hello List, I need do a REXX here, and unfortunatelly I forgot how do something. The REXX is very easy, and is like this : 3 *-* DO FOREVER 4

Re: Question About File RDR

2010-05-12 Thread Scott Rohling
From: scott.rohl...@gmail.com Subject: Re: Question About File RDR To: IBMVM@LISTSERV.UARK.EDU Put a double quote ( ) in front of PIPE --- the whole PIPE command needs to be contained within either double or single quotes. Scott Rohling On Wed, May 12, 2010 at 7:47 AM, Sergio Lima

Re: Question About File RDR

2010-05-12 Thread Sergio Lima
:49 -0500 From: robert.ba...@wellsfargo.com Subject: Re: Question About File RDR To: IBMVM@LISTSERV.UARK.EDU The output from the CP Q RDR ALL isn't stacked so the pull won't work. Easier to use a PIPE to pull it in 'PIPE CP Q RDR * ALL | drop 1 | specs w10 1 | var filename

Re: Question About File RDR

2010-05-12 Thread Mark Pace
If I understand what you want 'EXECIO * CP (STRING QUERY RDR * ALL STEM LINES.' Then do loop through the stem lines. On Wed, May 12, 2010 at 9:34 AM, Sergio Lima sergiovm...@hotmail.comwrote: Hello List, I need do a REXX here, and unfortunatelly I forgot how do something. The REXX is

Re: Question About File RDR

2010-05-12 Thread Scott Rohling
? Have a documentation about this ? This PIPE command run also under REXX / TSO ? Regards Sergio -- Date: Wed, 12 May 2010 08:41:49 -0500 From: robert.ba...@wellsfargo.com Subject: Re: Question About File RDR To: IBMVM@LISTSERV.UARK.EDU The output from the CP

Re: Question About File RDR

2010-05-12 Thread Scott Rohling
-- Date: Wed, 12 May 2010 08:41:49 -0500 From: robert.ba...@wellsfargo.com Subject: Re: Question About File RDR To: IBMVM@LISTSERV.UARK.EDU The output from the CP Q RDR ALL isn't stacked so the pull won't work. Easier to use a PIPE to pull it in 'PIPE CP Q RDR * ALL | drop 1 | specs w10 1

Re: Question About File RDR

2010-05-12 Thread Scott Rohling
run this PIPE against EXECIO ? Have a documentation about this ? This PIPE command run also under REXX / TSO ? Regards Sergio -- Date: Wed, 12 May 2010 08:41:49 -0500 From: robert.ba...@wellsfargo.com Subject: Re: Question About File RDR To: IBMVM

Re: Question About File RDR

2010-05-12 Thread Sergio Lima
? Sergio Date: Wed, 12 May 2010 09:44:07 -0400 From: mpac...@gmail.com Subject: Re: Question About File RDR To: IBMVM@LISTSERV.UARK.EDU If I understand what you want 'EXECIO * CP (STRING QUERY RDR * ALL STEM LINES.' Then do loop through the stem lines. On Wed, May 12, 2010 at 9:34 AM, Sergio

Re: Question About File RDR

2010-05-12 Thread Sergio Lima
Scott, No, good day ... you Helper. Sergio Date: Wed, 12 May 2010 08:10:23 -0600 From: scott.rohl...@gmail.com Subject: Re: Question About File RDR To: IBMVM@LISTSERV.UARK.EDU AAARGGHHH:: PIPE HELP MENU sorry -- bad day. Scott Rohling On Wed, May 12, 2010

Re: Question About File RDR

2010-05-12 Thread Frank M. Ramaekers
Subject: Re: Question About File RDR Hello Mark, Yes, you correct. This is like the old method that I used years ago. But still have a little problem, look please : 3 *-* DO FOREVER 4 *-* 'WAKEUP (RDR

Re: Question About File RDR

2010-05-12 Thread Bob Bates
Subject: Re: Question About File RDR Hello Mark, Yes, you correct. This is like the old method that I used years ago. But still have a little problem, look please : 3 *-* DO FOREVER 4 *-* 'WAKEUP (RDR ' WAKEUP (RDR +++ RC(4) +++ 6 *-* IF RC = 4 1

Re: Question About File RDR

2010-05-12 Thread Sergio Lima
: framaek...@ailife.com Subject: Re: Question About File RDR To: IBMVM@LISTSERV.UARK.EDU Replace “Say lines” with Do i=1 to Lines.0 Say Lines.i End Frank M. Ramaekers Jr. From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Sergio Lima

Re: Question About File RDR

2010-05-12 Thread Scott Rohling
: Question About File RDR To: IBMVM@LISTSERV.UARK.EDU Replace “Say lines” with Do i=1 to Lines.0 Say Lines.i End Frank M. Ramaekers Jr. -- *From:* The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] *On Behalf Of *Sergio Lima *Sent

Re: Question About File RDR

2010-05-12 Thread Mark Pace
. +++ RC(1003) +++ RC = 1003 ... Sergio -- Date: Wed, 12 May 2010 09:35:55 -0500 From: framaek...@ailife.com Subject: Re: Question About File RDR To: IBMVM@LISTSERV.UARK.EDU Replace “Say lines” with Do i=1 to Lines.0 Say Lines.i End

Re: Question About File RDR

2010-05-12 Thread Sergio Lima
Hello List, Thanks very much from all help. My program now run fine with EXECIO or PIPE. You are the best. Regards Sergio Date: Wed, 12 May 2010 11:10:28 -0400 From: mpac...@gmail.com Subject: Re: Question About File RDR To: IBMVM@LISTSERV.UARK.EDU Yes - that is correct