RE: VARIABLE-1 = '' Inconsistent behaviour

2004-02-03 Thread Adrian . Womack
One easy way I sometimes use is to just concatenate a field mark along with the new value and then remove the first field mark at the end... eg. A = LOOP INPUT B A := @FM:B UNTIL condition REPEAT A = A[2,LEN(A)-1] AdrianW -Original Message- From: Marco Manyevere

Re: [UV] escaping temp in dos diectory

2004-02-03 Thread Ray Wurlod
TEMP can't be guaranteed to exist. It's created if, during an upgrade, items are found in VOC that are different in type to the replacement that's to be installed in VOC as part of the upgrade. If an account has never been upgraded, there won't be a TEMP file. You'd be better off choosing

RE: [UV] escaping temp in dos diectory

2004-02-03 Thread uniVerse mailing list
Try a ^ in front of the . This works when doing redirects in a batch file, ie and become ^ and ^ The fails as this is the seperator in dos for a new command, so echo 1 echo 2 would do Echo 1 Echo 2 Andy -Original Message- I need to run a script in a temp directory because that's

Re: CallHTTP: Receiving an error

2004-02-03 Thread Simon Lewington
Mark I'm no expert (trial and error on this myself) but try increasing the depth on setAuthenticationDepth. Ithink 1 would work in this case with no certificate chain. Simon "Laursen, Mark" [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Hi List; Still working

SV: [UD]LOGTO

2004-02-03 Thread Björn Eklund
Ok, I've solved the menu problem you mention by setting @USER.RETURN.CODE in the calling program and then I fixed the LOGIN voc entry so that I skip the menu if the @USER.RETURN.CODE is equal to what I used in the calling program. Björn Eklund Anknytning 2088 -Ursprungligt

RE: SELECT NOT WORKING [uv 10 - unix]

2004-02-03 Thread Anthony Youngman
Title: RE: SELECT NOT WORKING [uv 10 - unix] I was about to ask if TYPE was indexed? That's also an obvious one ... if the index has somehow gotten out of sync. Cheers, Wol From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of George GallenSent: 02 February 2004 22:08To: 'U2

RE: VARIABLE-1 = '' Inconsistent behaviour

2004-02-03 Thread Anthony Youngman
It was this way on PI as well. Bear in mind that the-1 syntax was an "accident" - as originally implemented the search mechanism simply decremented to zero or the end of the string, and some bright spark realised that if you started with a negative number then it would always hit the end of

Re: [UV] VARIABLE-1 = and Basic Compile $OPTIONS EXTRA.DELIM work consistently

2004-02-03 Thread Marco Manyevere
The same documentation goes on to say: In INFORMATION and IN2 flavor accounts, if _expression_ is an empty string and the new element is appended to the end of the dynamic array, the end of a field, or the end of a value, a delimiter is appended to the dynamic array, field, or value. Use the

RE: [UD] Creating PDF from PCL output

2004-02-03 Thread Ted Figler
We wanted to do the same thing. Someone in this group recommended Pcl2pdf by Visual Software. We tried their demo and it worked great. Only two minor problems - one, it does not support color and some of the GL commands rendered slightly displaced but this is easily fixed. We ended up

Re: [UV] VARIABLE-1 = and Basic Compile $OPTIONSEXTRA.DELIMwork consistently

2004-02-03 Thread gerry simpson
this is not exactly correct while you are correct that the 3 statements result in 2 attributes, the 2nd state does indeed have aneffect A='abc' ;* A=abc , len(A)=3 A-1='' ;* A=abc:@FM , len(A)=4 A-1='def' ;* A=abc:@FM:def , len(A)=7 when EXTRA.DELIM is used the results are :

RE: CallHTTP: Receiving an error

2004-02-03 Thread Laursen, Mark
Simon; Tried changing the depth to 1. Same results. I going to try change the Use As, Format, and Algorithm and talk to the person that run the server. Thanks Mark Laursen Marriott Vacation Club International (863) 688-7700 Ext. 4339 [EMAIL PROTECTED] This communication

Re: VARIABLE-1 = '' Inconsistent behaviour

2004-02-03 Thread Mark Johnson
At least with maintaining a variable you are in control. - Original Message - From: Marco Manyevere To: U2 Users Discussion List Sent: Tuesday, February 03, 2004 2:00 AM Subject: Re: VARIABLE-1 = '' Inconsistent behaviour OK the documentation for

Re: VARIABLE-1 = '' Inconsistent behaviour

2004-02-03 Thread Mark Johnson
I worked on an application that had: A=INSERT(A,1,-1;NEWVAL:@VM) and it was tricky. You should develop your own best approach to this concept of managing manual delimiters. BTW, is the -1 necessary with A=A[2,LEN(A)-1]. For that matter, could you use A=A[2,1000]. My question is if the

RE: Document scan and retrieval (looking for software)

2004-02-03 Thread Ross Ferris
Title: RE: Document scan and retrieval (looking for software) FWIW this is an integral component of our Visage product simply drop a scanner element on a form you are in business (provided you have a PC with a scanner or Camera or other TWAIN device that is!). Simple matter to then have

Re: Recent issues

2004-02-03 Thread Mark Johnson
I take the blame for announcing that MV doesn't have typed variables (file handles and arrays excluded here). My contention is that we're not burdened by too many choices that may sometimes get in our way (integer vs long vs floating point etc) especially for numbers. There is a brain set,

Redback Properties

2004-02-03 Thread vance . alspach
Is it possible to send an entire record in a single Redback Property? When I attempt to send the entire record, the RedPage only returns the first attribute. I could not find anything in the documentation short of allowing multivalues and subvalues. In a nutshell what I am really trying to

Re: [UV] VARIABLE-1 = and Basic Compile$OPTIONSEXTRA.DELIMwork consistently

2004-02-03 Thread Mark Johnson
I think that the amount of diverse replies on this topic indicates an inconsistency across platforms and that the use of a MV counter either derived or managed is clearly the best solution that a programmer can take to any MV environment, new or old. It would remove any suspicion to wonder

Re: VARIABLE-1 = '' Inconsistent behaviour

2004-02-03 Thread gerry simpson
we use the A[x,] as well as A[*,x,] constructs a lot - no trailing characters/fields - Original Message - From: Mark Johnson [EMAIL PROTECTED] To: U2 Users Discussion List [EMAIL PROTECTED] Sent: Tuesday, February 03, 2004 8:14 AM Subject: Re: VARIABLE-1 = '' Inconsistent

[UD] Determining if list exists

2004-02-03 Thread Chris Bugosh
Title: [UD] Determining if list exists Is there a Unidata or Uniquery command that tells you if a select list exists? In UniBasic I can use a SelectInfo function to determine if a list exists, but I can't find a way to do it at the TCL prompt. I have the following PQN PROC. The PROC itself

RE: Redback Properties

2004-02-03 Thread Mike Randall
Pretty sure Redback will parse on field marks. I'd suggest converting them 1st and reconverting them back in your app. Mike R. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, February 03, 2004 8:44 AM To: [EMAIL

error

2004-02-03 Thread Yimi López
Hello: I have unidata, before when processed or to send heavy reports the System of thee Windows is arrived at 10% of the processor, but now arrives until a 40%. and that affects him performancia of the system, something knows on that. thanks.

RE: Redback Properties

2004-02-03 Thread vance . alspach
Mike, That is what I thought and we are currently converting field marks to pipe characters. It seems to work well but since I could not find any supporting information regarding sending entire records in a given property, I thought that I would pose the question to the list. Thanks for your

RE: using commas in a csv file output

2004-02-03 Thread George Gallen
that doesn't work if you are reading the data into a Word Table. It doesn't recognize quotes as ignore comma switch. Excel, however, respects it without a problem. George -Original Message-From: Kevin King [mailto:[EMAIL PROTECTED]Sent: Monday, February 02, 2004 11:51

Re: [UV] VARIABLE-1 = and BasicCompile$OPTIONSEXTRA.DELIMwork consistently

2004-02-03 Thread Martin Phillips
Mark, ...the use of a MV counter either derived or managed is clearly the best solution... Some interesting performance figures... X has 100 fields (I cannot remember how big they were for this test) X-1 = 'A' takes 100 time units X := @FM : 'A'takes 150

RE: [UD] Creating PDF from PCL output

2004-02-03 Thread George Gallen
There are two packages (for windows only I believe) that have PCL manipulation programs http://www.lincolnco.com http://www.swiftview.com They are not free however. George -Original Message-From: Steve Kunzman [mailto:[EMAIL PROTECTED]Sent: Monday, February 02, 2004 6:08

Re: Redback Properties

2004-02-03 Thread D Averch
In the conf directory you can change the delimiter in the rgwresp.ini. Below is what is looks like now: [Default] delim=254 startbackend=1 nresponders=2 backend=c:\ibm\ud60\bin\udt.exe perfstats=0 - Original Message - From: [EMAIL PROTECTED] To: U2 Users Discussion List [EMAIL PROTECTED]

RE: VARIABLE-1 = '' Inconsistent behaviour

2004-02-03 Thread Glenn Herbert
In universe, the -1 is specifically tested for appending, not an accident as indicated (in scd.c) Maybe that is how it worked in Pick, but not in PI or UV. At 04:21 AM 02/03/2004, you wrote: Content-class: urn:content-classes:message Content-Type: multipart/alternative;

RE: Redback Properties

2004-02-03 Thread Don Verhagen
Mike, I do as Vance does. As far as I know Redback properties are similiar to an attribute in a record in MV, and as such can only contain VM and SVM (2-dimensions) for REDBACK to handle it through Redback.RedFields. But as Vance suggests there is a way around it, you just need to create your

RE: Memo: Re: [UD] Determining if list exists

2004-02-03 Thread Chris Bugosh
Thanks. I couldn't get the IF S or IF #S to work, so I used Anthony Youngman's advice and used the REQUIRE.SELECT which worked fine. Also, Greenpeace will be glad to know that no trees were harmed in the creation of these reports. All printouts were held. Disk space however was used quite

Re: error

2004-02-03 Thread tvankirk
Yimi, The first place I'd look would be file performance. I am unfamiliar with Unidata on windows, but we use Unidata on AIX-unix. I'd run guide on the file and see what it recommends as far as sizing. You may have alot of overflow1 or even overflow2. Also, you may want to utilize indexing as

RE: Universe/Redhat GCI

2004-02-03 Thread Stu Glancy
Perhaps Universe 9.6.1.14 is not certified to run on RH 9. Its not in the product matrix. -Original Message-From: David Ward [mailto:[EMAIL PROTECTED]Sent: Monday, February 02, 2004 12:19 PMTo: [EMAIL PROTECTED]Subject: Universe/Redhat GCI Hello, We loaded

Re: [UV] VARIABLE-1 = and Basic Compile $OPTIONS EXTRA.DELIMwork consistently

2004-02-03 Thread Susan Lynch
As I recall, the INSERT function with a -1 parameter always added the relevant field mark until one of the Microdata releases around 1979, when some bright soul in their engineering department decided that the extra null value at the end was 'irrelevant' and should not be added. This change

Avante Job Scheduler

2004-02-03 Thread Dave Raven
I am looking for the Avante Job Scheduler Manual or instructions on how to use it or ... if it works at all. Haas Automation Inc. Dave Raven Mobile(949) 228 2224 e Fax (815)4259364 P.O. Box 17811, Irvine CA 92623-7811 ___ u2-users mailing list

Universe training

2004-02-03 Thread George Nitsos
Hello, I'm new to the list and looking for basic Universe training. It appears the only options are Raining Data and IBM. Does anyone have any recommendations? Thanks, George Nitsos I.S. Dept. UC Davis Bookstore (530)752-6515 ___ u2-users mailing list

RE: Document scan and retrieval (looking for software)

2004-02-03 Thread Lloyd Cottrell
Title: RE: Document scan and retrieval (looking for software) TRY COMPASSCS.COM. I USE THEM AND THEY HAVE A GREAT PRODUCT. INTEGRATED IN UNIVERSE ALSO From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ross FerrisSent: Tuesday, February 03, 2004 6:28 AMTo: U2 Users Discussion

RE: Document scan and retrieval (looking for software)

2004-02-03 Thread Keith Upton
Title: RE: Document scan and retrieval (looking for software) We use 1Mage (www.1mage.com) and amass for the optical jukebox -Original Message- From: Lloyd Cottrell [mailto:[EMAIL PROTECTED] Sent: 03 February 2004 17:54 To: 'U2 Users Discussion List' Subject: RE: Document scan

RE: UCI Error

2004-02-03 Thread David Sidhu
UV version? UniVerse version - 10.0.6 OS version? UniVerse Box OS - HP/UX 11.0 What is the different server? Oracle Box OS - HP/UX 11.0 Does this query complete from the TCL prompt on the UV server? YES -Original Message- From: Hona, David S [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: Universe training

2004-02-03 Thread Gerry Maddock
Check out http://www.discoverycomputersystems.com/ Marcie Gebauer Miller is a great instructor! (she usually holds basic Universe training workshops at our OSDA meetings) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of George Nitsos Sent: Tuesday,

RE: Document scan and retrieval (looking for software)

2004-02-03 Thread George Gallen
Title: RE: Document scan and retrieval (looking for software) another less integrated option (sorry if it was said before, I didn't catch the beginning of the thread). Use whatever method to scan/import as a bmp/jpg. Base64 encode the file, and store it in UV. Then Uncode the file, save

RE: Universe training

2004-02-03 Thread Bruce Lunt
George, I believe that Modular Information Systems (MIS) in San Ramon, CA offers the training that you're looking for. R. Bruce Lunt 408.832.1900 cell From: George Nitsos [EMAIL PROTECTED] Reply-To: U2 Users Discussion List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Universe

RE: Document scan and retrieval (looking for software)

2004-02-03 Thread Ross Ferris
Title: RE: Document scan and retrieval (looking for software) You could of course simply save the file into a directory that is also a type 1/19 file to UV I suppose it depends on the number of images involved, as a directory search will slow down, and yet .. Might be interesting to find

RE: using commas in a csv file output

2004-02-03 Thread Tony Gravagno
Once again you're looking at the problem like a nail because you're swinging at it with a CSV hammer. First import Tab-delimited text into your document. Then go to menu Table Convert Text to Table. All of this can be automated. George, what kind of import are you suggesting for a Word table?

RE: Document scan and retrieval (looking for software)

2004-02-03 Thread George Gallen
Title: RE: Document scan and retrieval (looking for software) Could also have the PC that is scanning save to a specific directory. then have a program monitor that directory for new entries, read them, encode them and save them somehow then the saved filename would have be linked into

Confprod running with 99.9% cpu

2004-02-03 Thread kafsat taiyus
Hi, I am supporting an Unidata 5.2 system running on Tru64 UNIX V5.1A with two CPU. When I look at the processes running in the system I find a process with command confprod is taking 99.9% CPU. Can anybody please tell me what is it and why is it happening? Collect -S -s p -n 4 #

UV SELECT Info Display

2004-02-03 Thread Mark Eastwood
Brain FreezeWhat's the Keyword you enter at end of SELECT statement to display the Index info it's using? TIA ­__ This e-mail, including any attachments, may contain information that is protected by law as privileged and confidential, and

RE: using commas in a csv file output

2004-02-03 Thread George Gallen
Title: RE: using commas in a csv file output I'm thinking the opposite on this one. It's exporting that's the problem. If you try to save a word table as a csv file, it won't quote any fields that have a comma, so your importing program gets all screwed up. We had a few people that kept

Re: Confprod running with 99.9% cpu

2004-02-03 Thread Wally Terhune
confprod is a tool to configure UniData licenses and generate config code, enter auth code. Sounds like someone disconnected somehow. Go ahead and kill it from the Unix shell. Wally Terhune Manager - U2 Advanced Technical Support IBM Data Management Solutions Tel: 303.294.4866 Fax:

RE: using commas in a csv file output

2004-02-03 Thread Simon Adams
Thankyou Stuart, This is the output I was looking for : "MD03," Cheers, Simon.Australia -Original Message-From: Stuart Boydell [mailto:[EMAIL PROTECTED]Sent: Tuesday, 3 February 2004 17:57To: U2 Users Discussion ListSubject: RE: using commas in a csv file output FLAT.LINE:=

UV command failing mystery

2004-02-03 Thread Vance Dailey
We are having a very strange intermittent problem with the UV command not working from Unix. Occasionally, after a user logs into Unix (without noticing anything unusual) typing UV simply returns the user to the UNIX shell almost instantly. When the problem occurs it seems to affect everyone who

Re: Re: [UD] Determining if list exists

2004-02-03 Thread Mark Johnson
Likewise if you're using new proc you may use the original ERRMSG file indicator as HSELECT FILE WHATEVER STON HSAVE-LIST LISTNAME P IF E = 401 GO somewhere as there were no items selected. - Original Message - From: [EMAIL PROTECTED] To: U2 Users Discussion List Sent:

RE: Memo: Re: [UD] Determining if list exists

2004-02-03 Thread Jacques G.
In a proc you would have: PQ HSELECT SOMEFILE SAMPLE 3 P IF E = 401 G 99 HLIST SOMEFILE P 99 O No Items Selected __ Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it! http://webhosting.yahoo.com/ps/sb/ -- u2-users mailing list [EMAIL

Re: [UV] VARIABLE-1 = andBasicCompile$OPTIONSEXTRA.DELIMwork consistently

2004-02-03 Thread Mark Johnson
My issue was the possibility of -1ing a null value. I use -1 plenty of times if i absolutely know that the value is not null or i'm creating a log file. If i'm appending a set of associated mv'd attributes, i still DCOUNT the controlling one (one with never a null) add 1 and directly replace from

RE: Memo: Re: [UD] Determining if list exists

2004-02-03 Thread Bruce Nichol
Goo'day, Are you sure the IF E = 401 bit works in UV? AFAIK, in UV, E = 0 if there are no items SELECTed, at least in Pick flavo*u*r. The 401 bit is vanilla Pick, which I remember we had to change on conversion to UV back in 9.3???. Dunno about UD, though At 10:06 04/02/04, you wrote:

Re: Memo: Re: [UD] Determining if list exists

2004-02-03 Thread Mark Johnson
The E=401 is a test to see if a process generated an ERRMSG record, item-id of 401. The ERRMSG file had its own syntax of displaying the messages with the parameters, but i'm sure it's a long lost art. Sort of like RUNOFF and BATCH. GFE (Gone ForEver). - Original Message - From: Bruce

RE: VARIABLE-1 = '' Inconsistent behaviour

2004-02-03 Thread Adrian . Womack
I must admit that I usually use A[x,9] BUT a couple of times over the years it has come back and bitten me. One case was a dynamic array of item descriptions - each description was a variable length string (average of less than 100 characters) and each array would have (on average) say 10 or

RE: Unidebugger question

2004-02-03 Thread Brad Bell
In case this helps anyone else, here is what I found: I had an older version of Wintegrate installed on my workstation. When I read the system requirements for unidebugger, I noted that I had an old version, so I also installed the Dynamic Connect program which comes on the Universe Client CD.

RE: [UV] escaping temp in dos diectory

2004-02-03 Thread Stuart Boydell
Thanks Ray others who answered, I did in fact end up using SAVEDLISTS. ;-) The reason for using a generic file and not creating one is that 1. I don't know which account it will run in. 2. i don't want the time factor of creating a file and 3. if it can't open the file then it doesn't need to