Re: [U2] A readnext within a VOC?

2009-12-11 Thread Brian Leach
To: U2 Users List Subject: [U2] A readnext within a VOC? I'd like to setup a VOC to select a list, then run a program for each entry in the list (like below...) PA GET-LIST LISTNAME LOOP READNEXT ID ELSE EXIT DATA ID RUN LIB PROGRAMNAME REPEAT I Thought there was a way to do

Re: [U2] A readnext within a VOC?

2009-12-11 Thread George Gallen
Thanks. George -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users- boun...@listserver.u2ug.org] On Behalf Of Brian Leach Sent: Friday, December 11, 2009 4:29 AM To: 'U2 Users List' Subject: Re: [U2] A readnext within a VOC? George Here's a very

[U2] A readnext within a VOC?

2009-12-10 Thread George Gallen
I'd like to setup a VOC to select a list, then run a program for each entry in the list (like below...) PA GET-LIST LISTNAME LOOP READNEXT ID ELSE EXIT DATA ID RUN LIB PROGRAMNAME REPEAT I Thought there was a way to do this...but just can't remember how. In the meantime, I pass

Re: [U2] A readnext within a VOC?

2009-12-10 Thread Jeff Schasny
OK, I'll bite. Why not just write and catalog a program. Seems like a paragraph is the wrong tool. Seriously, you could probably cobble something together using editor macros too but why? George Gallen wrote: I'd like to setup a VOC to select a list, then run a program for each entry in the

Re: [U2] A readnext within a VOC?

2009-12-10 Thread George Gallen
Schasny Sent: Thursday, December 10, 2009 2:23 PM To: U2 Users List Subject: Re: [U2] A readnext within a VOC? OK, I'll bite. Why not just write and catalog a program. Seems like a paragraph is the wrong tool. Seriously, you could probably cobble something together using editor macros too

Re: [U2] A readnext within a VOC?

2009-12-10 Thread Jeff Schasny
-run this program with the contents of the list. George -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users- boun...@listserver.u2ug.org] On Behalf Of Jeff Schasny Sent: Thursday, December 10, 2009 2:23 PM To: U2 Users List Subject: Re: [U2] A readnext within

Re: [U2] A readnext within a VOC?

2009-12-10 Thread George Gallen
...@listserver.u2ug.org [mailto:u2-users- boun...@listserver.u2ug.org] On Behalf Of Jeff Schasny Sent: Thursday, December 10, 2009 2:51 PM To: U2 Users List Subject: Re: [U2] A readnext within a VOC? OK, so you write a driver program: PROGRAM PROGRAMNAME.DRIVER GET-LIST LISTNAME LOOP READNEXT ID

Re: [U2] A readnext within a VOC?

2009-12-10 Thread andy baum
stuff,I think they 'fixed it' by documenting somewhere that it doesn't work. Cheers, Andy - Original Message From: George Gallen ggal...@wyanokegroup.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Thu, 10 December, 2009 19:03:08 Subject: [U2] A readnext within a VOC? I'd

Re: [U2] A readnext within a VOC?

2009-12-10 Thread Neil Richards
...@listserver.u2ug.org] On Behalf Of andy baum [andyb...@yahoo.co.uk] Sent: Thursday, December 10, 2009 1:06 PM To: U2 Users List Subject: Re: [U2] A readnext within a VOC? George, This was possible in PI/Open using PA GET-LIST LISTNAME LOOP IF L, ID = THEN GO NEXT RUN LIB PROGRAMNAME DATA ID

Re: [U2] A readnext within a VOC?

2009-12-10 Thread andy baum
...@switp.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Thu, 10 December, 2009 21:13:08 Subject: Re: [U2] A readnext within a VOC? This capability is in UV 10.2 This example represents a paragraph as it appears in a VOC file: 001 PA 002 RUN BP DUE.LIST 003 DATA ENTER DATE 004 DATA

Re: [U2] A readnext within a VOC?

2009-12-10 Thread Neil Richards
List Subject: Re: [U2] A readnext within a VOC? Neil, The specific request was to be able to process each item in a select list from within a Paragraph which is what the 'L' option of inline prompting did in PI/Open, unfortunately this has not been implemented in Universe. Cheers, Andy

Re: [U2] A readnext within a VOC?

2009-12-10 Thread Bob Woodward
, December 10, 2009 1:07 PM To: U2 Users List Subject: Re: [U2] A readnext within a VOC? George, This was possible in PI/Open using PA GET-LIST LISTNAME LOOP IF L, ID = THEN GO NEXT RUN LIB PROGRAMNAME DATA ID REPEAT NEXT: Unfortunately this never made it in to Universe, don't know

Re: [U2] A readnext within a VOC?

2009-12-10 Thread George Gallen
-Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users- boun...@listserver.u2ug.org] On Behalf Of Bob Woodward Sent: Thursday, December 10, 2009 5:32 PM To: U2 Users List Subject: Re: [U2] A readnext within a VOC? Or you could smarten up the program and check