Re: [U2] Paragraphs and procwrite

2009-06-03 Thread Barry Rogen
What about using the ILPROMPT IL.VALUE = A CORRESPONDING PROMPT IN THE PARAGRAPH . . . 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

RE: [U2] Paragraphs and procwrite

2009-05-26 Thread David A. Green
Of 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 roy
] 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 Then in the paragraph Do

RE: [U2] Paragraphs and procwrite

2009-05-25 Thread phil walker
- 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 well as a number of basic programs. What I

Re: [U2] Paragraphs and procwrite

2009-05-24 Thread Jacques G.
: Saturday, May 23, 2009 7:45: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- From

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

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 http://user.input.part.no/ COMMAND = PARAGRAPH.NAME

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 C2 command, where the number in the Cn prompt represents, in this example, the second word on the command line. e.g. IF C2 # THEN SELECT INVENTORY WITH PART.NO = C2 On Fri, May 22, 2009 at 5:25 PM, Louie Bergsagel

Re: [U2] PARAGRAPHS

2007-04-02 Thread Anthony W. Youngman
In message [EMAIL PROTECTED], Allen Egerton [EMAIL PROTECTED] writes Anita Panda wrote: I have received a paragraph say PARA.WORDS in a notepad.How can i get the content of PARA.WORDS into my universe system VOC file without again creating/typing it with: ED VOC PARA.WORDS in the

Re: [U2] PARAGRAPHS

2007-04-02 Thread Anita Panda
PROTECTED] Website: http://www.tcs.com Anthony W. Youngman [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 03/30/2007 09:59 PM Please respond to u2-users@listserver.u2ug.org To u2-users@listserver.u2ug.org cc Subject Re: [U2] PARAGRAPHS In message [EMAIL PROTECTED], Allen Egerton [EMAIL

Re: [U2] PARAGRAPHS

2007-04-02 Thread Adrian Overs
respond to u2-users@listserver.u2ug.org To u2-users@listserver.u2ug.org cc Subject Re: [U2] PARAGRAPHS In message [EMAIL PROTECTED], Allen Egerton [EMAIL PROTECTED] writes Anita Panda wrote: I have received a paragraph say PARA.WORDS in a notepad.How can i get the content of PARA.WORDS

Re: [U2] PARAGRAPHS

2007-04-02 Thread Charles Barouch
Anita, You need to either type the following at TCL or incorporate it into your LOGIN paragraph: PTERM CASE NOINVERT This will force the caps lock (and cut paste) from reversing the capitalization. - Chuck Anita Panda wrote: when I am doing the same thing all the code which

RE: [U2] PARAGRAPHS

2007-03-30 Thread [EMAIL PROTECTED]
I have received a paragraph say PARA.WORDS in a notepad.How can i get the content of PARA.WORDS into my universe system VOC file without again creating/typing it with: ED VOC PARA.WORDS in the Universe instance .Is there any way to get the contents onto the VOC file. This is assuming that

Re: [U2] PARAGRAPHS

2007-03-30 Thread Allen Egerton
Anita Panda wrote: I have received a paragraph say PARA.WORDS in a notepad.How can i get the content of PARA.WORDS into my universe system VOC file without again creating/typing it with: ED VOC PARA.WORDS in the Universe instance .Is there any way to get the contents onto the VOC file.

RE: [U2] PARAGRAPHS

2007-03-30 Thread Richard Sammartino
Anita, there are a couple of ways to do this. One way would be to ftp the notepad item from your pc to a universe directory and then copy the contents into a record in the VOC file. Another way would be to cut and paste the data into the VOC record. This method may not work depending on how the

RE: [U2] PARAGRAPHS

2007-03-30 Thread brian
Anita Although paragraphs are often created in the VOC, this is not the best place for them. You can put paragraphs anywhere so long as you create a pointer to them. A better way - and probably easier for you to update - is to do the following: 1. Create a directory file e.g. called PARAS

RE: [U2] PARAGRAPHS

2007-03-30 Thread Brad Moll - Incoming News
The simplest way, as long as it is not too long, is to copy it in notepad, edit the record in universe and start inserting a line, once you do that, just paste the contents and all of your code will be inserted, hit return to end the insert and then FI to file it and the proc has been created.

RE: [U2] PARAGRAPHS

2007-03-30 Thread Bjorn Behr
You can select copy in NP, then ED in Universe Insert paste the clipboard. bjorn -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Anita Panda Sent: 30 March 2007 01:22 PM To: u2-users@listserver.u2ug.org Subject: [U2] PARAGRAPHS I have received a

RE: [U2] PARAGRAPHS

2007-03-30 Thread Dan Fitzgerald
@listserver.u2ug.org Subject: RE: [U2] PARAGRAPHS Date: Fri, 30 Mar 2007 07:53:19 -0400 I have received a paragraph say PARA.WORDS in a notepad.How can i get the content of PARA.WORDS into my universe system VOC file without again creating/typing it with: ED VOC PARA.WORDS in the Universe instance

Re: [U2] PARAGRAPHS

2007-03-30 Thread Ray Wurlod
Transfer the paragraph text to your account directory. Within UniVerse execute COPYI FROM UFD TO VOC filename,paraname UFD is a pointer to the current user file directory - in this case your account directory. paraname in the above context is what you want to call the paragraph in your VOC,

RE: [U2] Paragraphs in Files Other Than VOC

2004-08-11 Thread Bob Witney
oops no it doesnt that was a hundred years ago and Pr1mos god i'm getting old -Original Message- From: Bob Witney Sent: 11 August 2004 11:59 To: '[EMAIL PROTECTED]' Subject: RE: [U2] Paragraphs in Files Other Than VOC Under universe you dont need pointers if it cant find an item

Re: [U2] Paragraphs in Files Other Than VOC

2004-08-11 Thread Glenn Herbert
Wouldn't you just create a stub like you would do with PROC's, i.e. PA 001 PQ 002 [VOCLIB %2] Then just enter: PA MYPARA This would run the MYPARA paragraph in the VOCLIB file. This is how I've done it in the past. Glenn At 06:30 AM 8/11/2004, you wrote: OK, Will, I'll probably regret it, but

RE: [U2] Paragraphs in Files Other Than VOC

2004-08-09 Thread Barry Rogen
Simple create a file to contain your paragraphs create voc entries that then refer to that file and item(s) 0001. R 0002. paragraph.filename 0003. paragraph.itemname Barry Rogen Senior Programmer PNY Technologies (973) 515 - 9700 ext 5327 [EMAIL PROTECTED]

RE: [U2] Paragraphs in Files Other Than VOC

2004-08-09 Thread Peter Olson
another option voc PETES.PROC 0001: PQ 0002: [PETE.BP PETES.PROC --+ +- | | | +- PROC NAME | +--- PROG LIB. This e-mail, including attachments, may include

Re: [U2] Paragraphs in Files Other Than VOC

2004-08-09 Thread Stu Glancy
Use VOCLIB, a standard file, with a type R record in the VOC. Here is an example: R VOCLIB MY.PARAGRAPH.OR.PROGRAM.OR.VERB OPTIONAL.SECURITY.PROGRAM - Original Message - From: Perry Taylor [EMAIL PROTECTED] To: U2-Users List [EMAIL PROTECTED] Sent: Monday, August 09, 2004 11:04 AM

Re: [U2] Paragraphs in Files Other Than VOC

2004-08-09 Thread Clifton Oliver
Put the paragraph in another file, VOCLIB for example is provided. Then in the VOC put a remote pointer that has an R on line one, the file name on two, and the record ID in that file on line three. ID: MONTH_END 01: R 02: VOCLIB 03: MONTH_END See the System Description Manual for more details

Re: [U2] Paragraphs in Files Other Than VOC

2004-08-09 Thread gcanedy
You can store them in the VOCLIB file, but you'll still need a remote pointer to it from within the VOC. VOCLIB record (named MY.REPORT for example): 0001: PA 0002: SETPTR 0003: SELECT... 0004: LIST 0005: etc. VOC record (MY.REPORT or other shortcut name you want to use): 0001: R 0002:

RE: [U2] Paragraphs in Files Other Than VOC

2004-08-09 Thread Doyen Klein
You can create a remote pointer in the voc but you'll still have to have a minimal voc entry. It does cut down on the number of lines in the voc. The format is 001: R 002: PP 003: PA.ID Line 1, the letter R, means a remote pointer Line 2 is your other filename, PP was a default file used for

RE: [U2] Paragraphs in Files Other Than VOC

2004-08-09 Thread Perry Taylor
Looks like an R VOC record is the ticket! Thanks to all who responded! Perry -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Perry Taylor Sent: Monday, August 09, 2004 9:04 AM To: U2-Users List Subject: [U2] Paragraphs in Files Other Than VOC Is it

Re: [U2] Paragraphs in Files Other Than VOC

2004-08-09 Thread FFT2001
In a message dated 8/9/04 10:27:30 AM Pacific Daylight Time, [EMAIL PROTECTED] writes: Is it possible to store paragraphs in files other than the VOC? I'm looking for a way to not clutter up the VOC with paragraphs... something like can be done with PROCs. Thanks. Perry Taylor