Re: [U2] Paragraphs and procwrite

2009-06-03 Thread Barry Rogen
What about using the ILPROMPT IL.VALUE = "<>" . . . DATA VALUE_TO_PASS_TO_PARAGRAPH PRINT ILPROMPT(IL.VALU) Barry Rogen PNY Technologies, Inc. Senior Programmer/Analyst (973) 515 - 9700 ext 5327 bro...@pny.com - We are continua

RE: [U2] Paragraphs and procwrite

2009-05-26 Thread David A. Green
roy Sent: Monday, May 25, 2009 5:18 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Paragraphs and procwrite To explain a little better ... The paragraph calls many other procs and paragraphs as well as a number of basic programs. What I found is that if someone exits a basic program

RE: [U2] Paragraphs and procwrite

2009-05-25 Thread phil walker
:owner-u2- > us...@listserver.u2ug.org] On Behalf Of roy > Sent: Tuesday, 26 May 2009 1:31 a.m. > To: u2-users@listserver.u2ug.org > Subject: RE: [U2] Paragraphs and procwrite > > To explain a little better ... > > The paragraph calls many other procs and paragraphs as

RE: [U2] Paragraphs and procwrite

2009-05-25 Thread roy
r.u2ug.org] On Behalf Of phil walker Sent: Sunday, May 24, 2009 8:07 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Paragraphs and procwrite Maybe I have come in late or are missing something in the question but can't you just use: Command = 'paragraph ':arg1 Execute Command

RE: [U2] Paragraphs and procwrite

2009-05-24 Thread phil walker
.org [mailto:owner-u2- > us...@listserver.u2ug.org] On Behalf Of Jacques G. > Sent: Monday, 25 May 2009 12:01 p.m. > To: u2-users@listserver.u2ug.org > Subject: Re: [U2] Paragraphs and procwrite > > You can have the basic program generate the paragraph dynamically, and > sav

Re: [U2] Paragraphs and procwrite

2009-05-24 Thread Jacques G.
:04 AM Subject: RE: [U2] Paragraphs and procwrite Hi You could use one of the user-defined system variables: e.g. @USER0 E.g. PA CallMyProgram IF @USER0 = "SomeFlag" GO DoSomething PROGRAM CallMyProgram @USER0 = "SomeOtherFlagActually" END > -Original Message--

RE: [U2] Paragraphs and procwrite

2009-05-23 Thread Brian Leach
Hi You could use one of the user-defined system variables: e.g. @USER0 E.g. PA CallMyProgram IF @USER0 = "SomeFlag" GO DoSomething PROGRAM CallMyProgram @USER0 = "SomeOtherFlagActually" END > -Original Message- > From: owner-u2-us...@listserver.u2ug.org > [mailto:owner-u2-us...@list

Re: [U2] Paragraphs and procwrite

2009-05-22 Thread Louie Bergsagel
And of course, the paragraph mentioned in #2 would read the argument using the <> command, where the number in the <> prompt represents, in this example, the second word on the command line. e.g. IF <> # "" THEN SELECT INVENTORY WITH PART.NO = <> On Fri, May 22, 2009 at 5:25 PM, Louie Bergsagel w

Re: [U2] Paragraphs and procwrite

2009-05-22 Thread Louie Bergsagel
Many: 1. Have the program create and/or update the paragraph record in the VOC file with a read, insert, and write. 2. Have the program run the paragraph with the appropriate argument, e.g. ARGUMENT = USER.INPUT.PART.NO COMMAND = "PARAGRAPH.NAME