RE: [U2] [UV] What is this?

2008-10-17 Thread Rod Hills
My take on this is that the NUMERIC function is for making sure the contents of TEXT can be used in an arithmetic expression (Which 2E-29 can). If you want to test if TEXT is not all digits, then maybe the following would be more appropriate IF TEXT MATCHES ~0N THEN PRINT NOT NUMERIC Rod Hills

RE: [U2] TCL Command stacker

2008-04-16 Thread Rod Hills
Ctrl-E moves cursor to the end of the line Backspace is used to delete characters I'm note sure where I found it, but it works pretty good... Hope that helps Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Doug Miller Sent: Tuesday

RE: [U2] Unidata Time in Milliseconds?

2008-01-30 Thread Rod Hills
In UniVerse you could use the SYSTEM(12) function. By setting the option (in a $OPTIONS statement) to TIME.MILLISECOND, this will return the local time in milliseconds. Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin King Sent: Wednesday

RE: [U2] Broadcasting messages

2007-07-06 Thread Rod Hills
message tool - Some terminal types and support a 25th status line that can also be used for programmatically displaying a message. Your application you are running would have to have a way to display the message a the appropriate point. HTH Rod Hills -Original Message- From: [EMAIL

RE: [U2] Redirect printer to file

2007-05-10 Thread Rod Hills
, how do you get the print driver to run? Rod Hills Leupold and Stevens -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jerry Sent: Wednesday, May 09, 2007 8:41 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Redirect printer to file Mac, We do

RE: [U2] Launching UV via HP-Ux

2007-04-13 Thread Rod Hills
users. Also, if uniVerse aborts, the user is merely kicked off the system and not left at a unix shell prompt (which would be unfamiliar territory for my users). My 2 cents Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brutzman, Bill Sent

RE: [U2] Help with File Pointers

2007-03-13 Thread Rod Hills
:/:x 0004 dim a(30) 0005 matparse a from x using / setting n 0006 i=0 0007 j=0 0008 loop while i n 0009 i+=1 0010 j+=1 0011 if a(i) eq .. then j=j-1 0012 else a(j)=a(i) 0013 repeat 0014 matbuild x from a,1,j using / 0015 print x Hope this is what you can use... Rod Hills

RE: [U2] [UV] New Account VOC Problem

2007-02-06 Thread Rod Hills
Couple of possible scenarios I can think of are- - You upgraded or moved the location of UniVerse - The permissions you are logged on with aren't sufficient to run Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brutzman, Bill Sent: Tuesday

RE: [U2] What Flavor UV ?

2006-10-26 Thread Rod Hills
At TCL enter - CT VOC RELLEVEL Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brutzman, Bill Sent: Thursday, October 26, 2006 11:15 AM To: 'u2-users@listserver.u2ug.org' Subject: [U2] What Flavor UV ? How do I determine what UniVerse flavor

RE: [U2] UniData and indexing

2006-09-20 Thread Rod Hills
I think it is because 2A465... looks too much like a mask. Try LIST ORDERS WITH PART.NBR = 2A465] Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David A. Green Sent: Wednesday, September 20, 2006 8:08 AM To: u2-users@listserver.u2ug.org

RE: [U2] Trying to Locate Paragraphs

2006-07-19 Thread Rod Hills
to do a ls -ld name (where name is the 2nd attribute from above). HTH Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of keithbo (sent by Nabble.com) Sent: Tuesday, July 18, 2006 11:33 AM To: u2-users@listserver.u2ug.org Subject: [U2] Trying

RE: [U2] Knowledgebase access

2006-01-26 Thread Rod Hills
Robert, I contacted my VAR (EPICOR) and was told no way no how... Rod Hills Leupold and Stevens -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert Paterson Sent: Thursday, January 26, 2006 8:55 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2

RE: [U2] [UV] Create hashed file in subdirectory?

2006-01-05 Thread Rod Hills
You can create part files like this- CREATE.FILE DATA SCRATCH,MYHASHFILE 18,1,1 This will create MYHASHFILE under SCRATCH. Then any reference to the file will be SCRATCH,MYHASHFILE, for instance- FILE.STAT SCRATCH,MYHASHFILE HTH Rod Hills -Original Message- From: [EMAIL PROTECTED

[U2] Determine performance of secondary index

2005-12-13 Thread Rod Hills
system. Thanks in advance... Rod Hills --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] [UV] PORT.STATUS From Unix

2005-11-22 Thread Rod Hills
If you display the VOC entry for PORT.STATUS you'll see it calls list_readu. Just cd /u1/uv/bin then ln list_readu port.status. Then you can run port.status at the unix level. HTH Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Perry Taylor

RE: [U2] Bug in UV.VI

2005-11-02 Thread Rod Hills
UV.VI ignores it is type 19 and treats it like a type 1. So any BP item names greater than 13 characters will cause it generate the wrong name. HTH Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, November 02

RE: [U2] [UD] how to find records with a in the data

2005-10-28 Thread Rod Hills
Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kathy Tymoczko Sent: Wednesday, October 26, 2005 2:09 PM To: u2-users@listserver.u2ug.org Subject: [U2] [UD] how to find records with a in the data We have a number of records with double-quote

RE: [U2] [UD] how to find records with a in the data

2005-10-27 Thread Rod Hills
I got the following to work under Universe 10.0.16- LIST VOC WITH F1 LIKE '0X0X' Hope that helps Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Keith Johnson Sent: Thursday, October 27, 2005 12:21 PM To: u2-users@listserver.u2ug.org Subject

RE: [U2] To locate the last occurrence of a sub-string in a string

2005-09-28 Thread Rod Hills
You could do the following- N=COUNT(X,AC) P=INDEX(X,AC,,N) P will be the position of the last AC. HTH Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hari T. K. Varma Sent: Wednesday, September 28, 2005 8:35 AM To: u2-users

RE: [U2] How to count records present in TYPE 30 file from unix shell prompt ??

2005-09-08 Thread Rod Hills
How about executing a FILE.STAT- Let's say your universe account is at /u1/uv and you want a record count of the VOC. Then enter cd /u1/uv nrec=`echo VOC | /u1/uv/bin/file.stat | awk '/^Number of rec/{print $5}'` Hope that helps... Rod Hills -Original Message- From: [EMAIL PROTECTED

RE: [U2] How to count records present in TYPE 30 file from unix

2005-09-08 Thread Rod Hills
/{print $5}'` Hope this is what you are looking for... Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Schasny Sent: Thursday, September 08, 2005 8:47 AM To: U2 Group Subject: RE: [U2] How to count records present in TYPE 30 file from unix

RE: [U2] How to count records present in TYPE 30 file from unix

2005-09-08 Thread Rod Hills
| awk '/^Number of rec/{print $5}'` Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rod Hills Sent: Thursday, September 08, 2005 9:49 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] How to count records present in TYPE 30 file from unix

RE: [U2] How to count records present in TYPE 30 file from unix

2005-09-08 Thread Rod Hills
| awk '/^Number of rec/{print $5}'` Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rod Hills Sent: Thursday, September 08, 2005 10:30 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] How to count records present in TYPE 30 file from unix

RE: [U2] Barcode Label Print Software

2005-06-22 Thread Rod Hills
share DCDOWN to our bartender server. No terminal needs to be logged in for processing... HTH -- Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brutzman, Bill Sent: Wednesday, June 22, 2005 9:01 AM To: 'u2-users@listserver.u2ug.org' Subject: RE

RE: [U2] Hidden spindle

2005-05-04 Thread Rod Hills
Probabily because /u3 is not mounted. Look at file /etc/fstab for the files that are being mounted. -- Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Will Sent: Wednesday, May 04, 2005 8:35 AM To: u2-users@listserver.u2ug.org Subject: [U2

RE: [U2] Base 16, 26, 36

2005-04-22 Thread Rod Hills
Take a look at this small program... 0001 FOR I = 0 TO 625 0002 A=INT(I/26) ; B=MOD(I,26) ; C=MOD(A,26) 0003 PRINT I,CHAR(65+C),CHAR(65+B) 0004 NEXT I It will map the numbers from 0 to 625 into AA to ZZ. -- Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED

RE: [U2] Determine bad block in universe hash file

2005-03-30 Thread Rod Hills
Thanks for the reply. That's the way I computed it. But when I entered step 10702, I got an error that that was past the modulo of 8581. You have to track from the first block of a hash bucket and that is what I'm trying to find... -- Rod Hills -Original Message- From: [EMAIL PROTECTED

RE: [U2][UV] - Keeping subroutines in memory

2005-02-09 Thread Rod Hills
What if the program executes a chain to itself. Chain will terminate the current basic program and execute what ever universe command (or program) you supply. HTH -- Rod Hills -Original Message- From: Nick Cipollina [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 2005 6:06 AM

[U2] UV ODBC Client on Win2003

2005-02-03 Thread Rod Hills
Does anyone know if UV ODBC Client can be installed (and work) on a Win2003 server? -- Rod Hills --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] Determining compile date and time

2005-01-18 Thread Rod Hills
From unix shell prompt, do ls -l BP.O/PROGRAM. This will display the last modify date of the object program. -- Rod Hills -Original Message- From: Bruce Lunt [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 1:11 PM To: u2-users@listserver.u2ug.org Subject: [U2] Determining

[U2] Screen to add a universe printer has too small input field to specify interface driver script

2005-01-17 Thread Rod Hills
With SB+ you can type as much as you want in an input field and it will scroll within the field, but I don't seem to have the ability within universe administration. -- Rod Hills --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] UV Pre-printed forms

2005-01-04 Thread Rod Hills
it with universe, I added a cat command in the front of print driver script to copy the image to the printer, prior to the copying of the text of the report. Hope this helps... -- Rod Hills -Original Message- From: Mark Johnson [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 04, 2005 5:23

[U2] uvodbc truncating field

2004-12-03 Thread Rod Hills
END I am using the technique described in the UCI documentation for Universe 10.0.16. It is discussed in chapter 6. Anyone have any ideas what would cause this? Thanks in advance -- Rod Hills --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/

[U2] Re assigning universe index file after OS level copy

2004-11-12 Thread Rod Hills
). Is their a way to copy a data/index files and not have to rebuild the index. Thanks in advance -- Rod Hills Leupold and Stevens --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] Printing an RTF file from Universe

2004-11-10 Thread Rod Hills
If you are on a unix Avante system, then get the utility called Ted. It is an RTF X-window edittor, but it has the ability to convert RTF to Postscript at command line. Then you can use a utility called ghostscript to convert Postscript to PCL. -- Rod Hills -Original Message- From: Brian

RE: [U2] NT UNIX

2004-11-03 Thread Rod Hills
We are running hpux and are using pam (password authentication module). It can validate against our Windows domain server (or ADS server). The user logs in with their hpux login and the equivalent windows login is looked up and the password entered is validated. Works pretty well. -- Rod Hills

RE: [U2] [UV] Strange Select Results?

2004-10-14 Thread Rod Hills
Could it be because STATUS is a keyword? -Original Message- From: Mats Carlid [mailto:[EMAIL PROTECTED] Sent: Thursday, October 14, 2004 7:09 AM To: [EMAIL PROTECTED] Subject: Re: [U2] [UV] Strange Select Results? I've never seen select reuturn status -1 except when there is a syntax

RE: [U2] [ADM] List server hiccup?

2004-09-09 Thread Rod Hills
Did you sign up for u2-users-digest? This list sends a bunch at a time... -- Rod Hills -Original Message- From: Gordon Glorfield [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 1:44 PM To: '[EMAIL PROTECTED]' Subject: [U2] [ADM] List server hiccup? Why did I just get

RE: [U2] Correlative referencing multi-value field in another file

2004-09-01 Thread Rod Hills
Allen, Universe does have I-descriptors, but the programmer was trying to build an F-correlative (from old PICK) to do the task. -- Rod Hills -Original Message- From: Allen E. Elwood (CA) [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 01, 2004 9:40 AM To: [EMAIL PROTECTED