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