RE: [U2] wIntegrate keep-alives

2004-07-09 Thread Andy Moore
DISCLAIMER:
This email and any files transmitted with it are confidential and intended
solely for the use of the individual or entity to whom they are addressed.
If you have received this email in error, please delete it and notify
the sender immediately.  Please note that there is no guarantee that
this email or any attachment is virus free or has not been intercepted
or amended.

Bill,

We use wintegrate and on some of our sites we too have the issue of dropping 
connections (if no activity for 1 minute!).

I normally get around this by either pinging the server in a loop from the Dos command 
prompt while using wintegrate ( ping xx.xx.xx.xx -t ). If this is no good, how about a 
small program that does something daft like a listu every 30 seconds or something?

-Original Message-
From: Bill H. [mailto:[EMAIL PROTECTED]
Sent: 08 July 2004 19:37
To: [EMAIL PROTECTED]
Subject: [U2] wIntegrate keep-alives


Does wIntegrate have any facility to send keep-alives, like AccuTerm does,
in order to avoid the inevitible over the internet?

Bill
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Passing a SELECT ID if it's not in the file...

2004-07-09 Thread George Gallen
I have a paragraph that does...

SELECT FILE WITH @ID = TARGET
RUN PROGRAM

   {Program}
   LOOPS THROUGH READNEXT ID'S
   IF ID IS IN FILE IGNORE OTHERWISE PUT IN FILE

This works fine if TARGET exists in the FILE.

How would can I force the TARGET to be in an
active select list if it's not in the file?

Keeping in mind this is in a paragraph.

I tried:

0001: PA
0002: * A,Enter ID
0003: EDIT-LIST
0004: DATA I
0005: DATA Enter ID
0006: DATA FI
0007: GET-LIST
0008: LIST FILE

But I'm stuck at the EDIT-LIST. How do I tell it a unique listname
, unique for the PID anyway.

For Instance, If you say SAVE-LIST (noname), it saves it using a unique name
   for the PID, and GET-LIST (noname) will get this list. But is there
   anyway to get this uniquename for EDIT-LIST?

George
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Passing a SELECT ID if it's not in the file...

2004-07-09 Thread Les Hewkin
George,

Lists are just items held in a file, SAVEDLISTS.

Run a program that creates a list for you and then just do a get list.

Les.

-Original Message-
From: George Gallen [mailto:[EMAIL PROTECTED]
Sent: 09 July 2004 15:54
To: [EMAIL PROTECTED]
Subject: [U2] Passing a SELECT ID if it's not in the file...


I have a paragraph that does...

SELECT FILE WITH @ID = TARGET
RUN PROGRAM

   {Program}
   LOOPS THROUGH READNEXT ID'S
   IF ID IS IN FILE IGNORE OTHERWISE PUT IN FILE

This works fine if TARGET exists in the FILE.

How would can I force the TARGET to be in an
active select list if it's not in the file?

Keeping in mind this is in a paragraph.

I tried:

0001: PA
0002: * A,Enter ID
0003: EDIT-LIST
0004: DATA I
0005: DATA Enter ID
0006: DATA FI
0007: GET-LIST
0008: LIST FILE

But I'm stuck at the EDIT-LIST. How do I tell it a unique listname
, unique for the PID anyway.

For Instance, If you say SAVE-LIST (noname), it saves it using a unique name
   for the PID, and GET-LIST (noname) will get this list. But is there
   anyway to get this uniquename for EDIT-LIST?

George
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


This e-mail and any attachments are confidential and intended solely for the use of 
the addressee only. If you have received this message in error, you must not copy, 
distribute or disclose the contents; please notify the sender immediately and delete 
the message.
This message is attributed to the sender and may not necessarily reflect the view of 
Travis Perkins plc or its subsidiaries (Travis Perkins). Agreements binding Travis 
Perkins may not be concluded by means of e-mail communication.
E-mail transmissions are not secure and Travis Perkins accepts no responsibility for 
changes made to this message after it was sent. Whilst steps have been taken to ensure 
that this message is virus free, Travis Perkins accepts no liability for infection and 
recommends that you scan this e-mail and any attachments.
Part of Travis Perkins plc. Registered Office: Lodge Way House, Lodge Way, Harlestone 
Road, Northampton, NN5 7UG.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Gary Canedy/users/Promutualgroup is out of the office.

2004-07-09 Thread gcanedy
I will be out of the office starting  07/09/2004 and will not return until
07/13/2004.

Vacation...  I will respond to your message when I return.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Passing a SELECT ID if it's not in the file...

2004-07-09 Thread Glenn Herbert
I think it would be easier to do:
001 PQN
002 C Prompt for id
003 OEnter ID+
004 IP %1
005 C Obtain user number
006 S5
007 IH%5:U50BB:
008 C Create list ending with userno
009 HEDIT-LIST UNIQUE.NAME.
010 H%5
011 STON
012 HI
013 H%1
014 H
015 H
016 HFI
017 P
018 C Use list just created
019 HGET-LIST UNIQUE.NAME.
020 H%5
021 STON
022 HLIST FILE
023 P
The one thing you cannot do in PA is run user exits and get the results,
whereas in PQ (and BASIC) you can.  I used the userno exit, but I believe
there is also one to return the pidno.
Although someone gave a BASIC solution, the overhead of that (to me) is
wasteful.  On the flip side, you have to know PROC and be able to (and
WANT to) support it.
Good luck.
At 10:54 AM 7/9/2004, you wrote:
I have a paragraph that does...
SELECT FILE WITH @ID = TARGET
RUN PROGRAM
   {Program}
   LOOPS THROUGH READNEXT ID'S
   IF ID IS IN FILE IGNORE OTHERWISE PUT IN FILE
This works fine if TARGET exists in the FILE.
How would can I force the TARGET to be in an
active select list if it's not in the file?
Keeping in mind this is in a paragraph.
I tried:
0001: PA
0002: * A,Enter ID
0003: EDIT-LIST
0004: DATA I
0005: DATA Enter ID
0006: DATA FI
0007: GET-LIST
0008: LIST FILE
But I'm stuck at the EDIT-LIST. How do I tell it a unique listname
, unique for the PID anyway.
For Instance, If you say SAVE-LIST (noname), it saves it using a unique name
   for the PID, and GET-LIST (noname) will get this list. But is there
   anyway to get this uniquename for EDIT-LIST?
George
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Passing a SELECT ID if it's not in the file...

2004-07-09 Thread Stevenson, Charles
What Brian Leach said.  I wrote a MAKE.LIST verb that creates an active
select list from the contents of the command line.  (I think some
versions of Pick have that, maybe by a different name.  Can't remember.)
The program loads a dynamic array from Brian's Get(ARG.)s, then does
FORMLIST.  The voc'S MAKE.LIST verb generated when CATALOGing the
program needs to be edited with a K included in 4 to keep the list
active when the program terminates.

Or, depending on how general or specific you need the solution, combine
Brian's answer in your program.  Instead of looping through READNEXTs,
loop through GET(ARG.)s. 


 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of George Gallen
 Sent: Friday, July 09, 2004 10:54 AM
 To: [EMAIL PROTECTED]
 Subject: [U2] Passing a SELECT ID if it's not in the file...
 
 I have a paragraph that does...
 
 SELECT FILE WITH @ID = TARGET
 RUN PROGRAM
 
{Program}
LOOPS THROUGH READNEXT ID'S
IF ID IS IN FILE IGNORE OTHERWISE PUT IN FILE
 
 This works fine if TARGET exists in the FILE.
 
 How would can I force the TARGET to be in an active 
 select list if it's not in the file?
 
 Keeping in mind this is in a paragraph.
 
 I tried:
 
 0001: PA
 0002: * A,Enter ID
 0003: EDIT-LIST
 0004: DATA I
 0005: DATA Enter ID
 0006: DATA FI
 0007: GET-LIST
 0008: LIST FILE
 
 But I'm stuck at the EDIT-LIST. How do I tell it a unique 
 listname , unique for the PID anyway.
 
 For Instance, If you say SAVE-LIST (noname), it saves it 
 using a unique name
for the PID, and GET-LIST (noname) will get this list. But is there
anyway to get this uniquename for EDIT-LIST?
 
 George
 ---
 u2-users mailing list
 [EMAIL PROTECTED]
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Gary Canedy/users/Promutualgroup is out of the office.

2004-07-09 Thread gcanedy
I will be out of the office starting  07/09/2004 and will not return until
07/13/2004.

Vacation...  I will respond to your message when I return.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Cannot see UniOleDB drivers

2004-07-09 Thread alfkec
Hmmm I thought I was able to browse the tables with the ADO tool like I
could with the ODBC tool but when I just tried it I couldn't.

However, I was able to run select statements without problem (you can cut
and paste them from the ODBC tool if you don't know how to create them).

I had one project with OleDB access that I was testing the required SQL
statements in it but that project was put on hold as our company was just
assimilated by another one which is replacing our product with an
MSSQL/Informix/Oracle based one

hth
-- 
Colin Alfke
Calgary, Alberta Canada

Just because something isn't broken doesn't mean that you can't fix it

Stu Pickles



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Friday, July 09, 2004 9:19 AM
To: [EMAIL PROTECTED]
Subject: RE: [U2] Cannot see UniOleDB drivers


I too am not able to view data.  I am running Unidata 6.0 and 
have several 
working ODBC applications.  I have had success with creating 
and connecting 
with the .udl file mentioned in 1.  I have had success with 
the ODBC tool 
downloaded from the website but cannot see any of the table 
views in the OLEDB 
tool.  Any suggestions would be appreciated.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Why can't a globally cataloged programs have command line arguments?

2004-07-09 Thread George Gallen
ED BP TEST
001: PRINT @SENTENCE
002: PRINT @COMMAND
003: STOP
004: END

BASIC BP TEST
CATALOG BP *TEST

*TEST
*TEST
*TEST

*TEST HELLO


(The program doesn't even run..)

This is UV10

To put it in MP terms,

Are you here for an argument?
Yes!
Go away then

George
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] UniRPC question

2004-07-09 Thread Nick Cipollina
What needs to be in the /etc/hosts file to start the unirpc service.  That
seems to be the only thing I'm missing to start unirpc.  Thanks.

 

Nick Cipollina

 

Pick Programmer

Heritage Information Systems, Inc.

2810 North Parham Road, Suite 210

Richmond, VA 23294

(804)644-8707 x 314 

 



NOTICE OF CONFIDENTIALITY: The information contained in this transmission,
and in any accompanying documents, constitutes confidential information
belonging to Heritage Information Systems, Inc.  This information is
intended only for the use of the individual or entity named above.  If you
are not the intended recipient of this transmission, you are hereby notified
that any disclosure, copying, distribution, or the taking of any action in
reliance of this information, is strictly prohibited.  If you have received
this message in error, please immediately notify us by telephone, at
804-644-8707 to arrange for its proper destruction.  Thank you.

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
image001.jpg]

[demime 1.01d removed an attachment of type image/gif which had a name of image002.gif]
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Passing a SELECT ID if it's not in the file...

2004-07-09 Thread Allen E. Elwood \(CA\)
I'm not sure about Universe, but in Unidata the savedlists are 'paged' with
each page being about 32k or so.  So if you saved a list:

SAVE-LIST AEE

it would generate the SAVEDLISTS entry of AEE000, AEE001, AEE002, etc.
depending on how many records were saved.  However it is not necessary to
make a new page for each 32k entry, this is a left over.  So if you do
decide to form a list in a program, you'll need to:

  Write MyList On SL, Temp_:@UserNo:000

and then you can do:

  Chain GET.LIST Temp_:@UserNo


*=aee=*

Disclaimer: If you received this message in error please dance down the hall
skipping and whistling while twirling a large branch over your head, or eat
a mustard and cheese sandwich while staring at your coworkers and mumbling
incoherently.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Brian Leach
Sent: Friday, July 09, 2004 08:27
To: [EMAIL PROTECTED]
Subject: RE: [U2] Passing a SELECT ID if it's not in the file...


Why not just a short program to do it for you?

===rest of original clipped for low bandwidth users===
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Why can't a globally cataloged programs have command line arguments?

2004-07-09 Thread Stevenson, Charles
Oh, joy.  It's a stupidity that Prime gave us,  Vmark preserved.
(don't know about UD.)

A line that begins with a * is a comment - if it also has a space in
it somwhere after the *..

A line that begins with a * and has no spaces after the * is treated
like a globally catalogued program.


Note, just to make it complicateder,  either comment or catlogued
programs can have _leading_ spaces, i.e., spaces before the *, which
is the first non-space character.
Try typing *TEST
   and *TEST HELLO  to see what I mean, George.

The other side of your problem is if you have, say, 10 lines of a
paragraph that you want to comment out do  c//* /10with a space.
not c//*/10
Cuz if you have a one-word line, it will suddenly be interpretted as a
globally catalogued  program.


(Got any documentation you want me to write?   Didn't think so.)


CDS

 ED BP TEST
 001: PRINT @SENTENCE
 002: PRINT @COMMAND
 003: STOP
 004: END
 
 BASIC BP TEST
 CATALOG BP *TEST
 
 *TEST
 *TEST
 *TEST
 
 *TEST HELLO
 
 
 (The program doesn't even run..)
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Cannot see UniOleDB drivers

2004-07-09 Thread richpielak
Thanks.  Sorry to hear about your conversion from U2. :(
 Hmmm I thought I was able to browse the tables with the ADO tool like I
 could with the ODBC tool but when I just tried it I couldn't.
 
 However, I was able to run select statements without problem (you can cut
 and paste them from the ODBC tool if you don't know how to create them).
 
 I had one project with OleDB access that I was testing the required SQL
 statements in it but that project was put on hold as our company was just
 assimilated by another one which is replacing our product with an
 MSSQL/Informix/Oracle based one
 
 hth
 -- 
 Colin Alfke
 Calgary, Alberta Canada
 
 Just because something isn't broken doesn't mean that you can't fix it
 
 Stu Pickles
 
 
 
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Friday, July 09, 2004 9:19 AM
 To: [EMAIL PROTECTED]
 Subject: RE: [U2] Cannot see UniOleDB drivers
 
 
 I too am not able to view data.  I am running Unidata 6.0 and 
 have several 
 working ODBC applications.  I have had success with creating 
 and connecting 
 with the .udl file mentioned in 1.  I have had success with 
 the ODBC tool 
 downloaded from the website but cannot see any of the table 
 views in the OLEDB 
 tool.  Any suggestions would be appreciated.
 ---
 u2-users mailing list
 [EMAIL PROTECTED]
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] UniRPC question

2004-07-09 Thread Donald Kibbey
Are you sure your talking about the /etc/hosts file?  I think you may need to take a 
look at the /etc/services file and verify this line is in there somewhere.

uvrpc   31438/tcp   # uvNet rpc port

Hope that helps.

btw, need another programmer down there in Richmond?  I live in Fredericksburg and the 
commute to DC sucks


Don Kibbey
Financial Systems Manager
Finnegan, Henderson, Farabow, Garrett  Dunner LLP


 [EMAIL PROTECTED] 07/09/04 01:53PM 
What needs to be in the /etc/hosts file to start the unirpc service.  That
seems to be the only thing I'm missing to start unirpc.  Thanks.

 

Nick Cipollina

 

Pick Programmer

Heritage Information Systems, Inc.

2810 North Parham Road, Suite 210

Richmond, VA 23294

(804)644-8707 x 314 

 



NOTICE OF CONFIDENTIALITY: The information contained in this transmission,
and in any accompanying documents, constitutes confidential information
belonging to Heritage Information Systems, Inc.  This information is
intended only for the use of the individual or entity named above.  If you
are not the intended recipient of this transmission, you are hereby notified
that any disclosure, copying, distribution, or the taking of any action in
reliance of this information, is strictly prohibited.  If you have received
this message in error, please immediately notify us by telephone, at
804-644-8707 to arrange for its proper destruction.  Thank you.

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
image001.jpg]

[demime 1.01d removed an attachment of type image/gif which had a name of image002.gif]
---
u2-users mailing list
[EMAIL PROTECTED] 
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Why can't a globally cataloged programs have command line arguments?

2004-07-09 Thread Clifton Oliver
Neither does
*TEST spacecr
It appears that a space following the verb makes TCL think the entire 
line is a comment.

I don't have access to a rev 9 system at the moment. Can someone else 
try this on rev 9?

--
Regards,
Clif
On Jul 9, 2004, at 10:37, George Gallen wrote:
ED BP TEST
001: PRINT @SENTENCE
002: PRINT @COMMAND
003: STOP
004: END
BASIC BP TEST
CATALOG BP *TEST

*TEST
*TEST
*TEST
*TEST HELLO
(The program doesn't even run..)
This is UV10
To put it in MP terms,
Are you here for an argument?
Yes!
Go away then
George
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UniRPC question

2004-07-09 Thread Wendy Smoak
Nick Cipollina wrote:
 What needs to be in the /etc/hosts file to start the unirpc 
 service.  That seems to be the only thing I'm missing to start unirpc.

I don't recall having to add anything special to /etc/hosts to get the
RPC to work.  Is it not starting, or not answering once it's started?

There's a page on the Wiki, but it doesn't have much info [yet]:
http://www.pickwiki.com/cgi-bin/wiki.pl?RPCDaemonHelp

Check your unirpcservices file-- for UniData it needs a 'udcs' line,
ours looks like this:
udcs /app/ud60/bin/udapi_server * TCP/IP 0 3600

On UniVerse I think it's uvcs but I don't know if the rest of the line
would be the same.

-- 
Wendy Smoak
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] wIntegrate keep-alives

2004-07-09 Thread Bill H.
Andy:

Thanks.  What I've been doing is using AccuTerm.  It has keepalives both in
it's telnet and ssh.  In fact, if it wasn't for wIntegrate's query builder
I'd never use it.  :-)

Thanks,

Bill

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Andy Moore
 Sent: Friday, July 09, 2004 1:24 AM
 To: [EMAIL PROTECTED]
 Subject: RE: [U2] wIntegrate keep-alives


 DISCLAIMER:
 This email and any files transmitted with it are confidential and intended
 solely for the use of the individual or entity to whom they are addressed.
 If you have received this email in error, please delete it and notify
 the sender immediately.  Please note that there is no guarantee that
 this email or any attachment is virus free or has not been intercepted
 or amended.

 Bill,

 We use wintegrate and on some of our sites we too have the issue
 of dropping connections (if no activity for 1 minute!).

 I normally get around this by either pinging the server in a loop
 from the Dos command prompt while using wintegrate ( ping
 xx.xx.xx.xx -t ). If this is no good, how about a small program
 that does something daft like a listu every 30 seconds or something?

 -Original Message-
 From: Bill H. [mailto:[EMAIL PROTECTED]
 Sent: 08 July 2004 19:37
 To: [EMAIL PROTECTED]
 Subject: [U2] wIntegrate keep-alives


 Does wIntegrate have any facility to send keep-alives, like AccuTerm does,
 in order to avoid the inevitible over the internet?

 Bill
 ---
 u2-users mailing list
 [EMAIL PROTECTED]
 To unsubscribe please visit http://listserver.u2ug.org/
 ---
 u2-users mailing list
 [EMAIL PROTECTED]
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Why can't a globally cataloged programs have command line arguments?

2004-07-09 Thread Glenn Herbert
Yeah. The specific code is:
if(key.len1  *key.text == '*'  !STRchr((*cmd),' '))
Its the STRchr that mucks things up, basically saying and no spaces in the 
command string.

Oh bother!
At 02:35 PM 7/9/2004, you wrote:
Oh, joy.  It's a stupidity that Prime gave us,  Vmark preserved.
(don't know about UD.)
A line that begins with a * is a comment - if it also has a space in
it somwhere after the *..
A line that begins with a * and has no spaces after the * is treated
like a globally catalogued program.
Note, just to make it complicateder,  either comment or catlogued
programs can have _leading_ spaces, i.e., spaces before the *, which
is the first non-space character.
Try typing *TEST
   and *TEST HELLO  to see what I mean, George.
The other side of your problem is if you have, say, 10 lines of a
paragraph that you want to comment out do  c//* /10with a space.
not c//*/10
Cuz if you have a one-word line, it will suddenly be interpretted as a
globally catalogued  program.
(Got any documentation you want me to write?   Didn't think so.)
CDS
 ED BP TEST
 001: PRINT @SENTENCE
 002: PRINT @COMMAND
 003: STOP
 004: END

 BASIC BP TEST
 CATALOG BP *TEST

 *TEST
 *TEST
 *TEST

 *TEST HELLO
 

 (The program doesn't even run..)
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] U2UG Needs You

2004-07-09 Thread Dana Baron
Greetings,

If you're on this e-mail list, you're probably at least vaguely aware of the
existence of a nascent U2 users group. And if you're mildly curious, you may
be asking yourself, and others, whatever happened to that group.

Well there has been a lot going on behind the scenes. We have a founding
board working to create an international organization with by-laws,
elections and such. Here are some of the things the board has been doing so
far, some visible, some not:

1. In May Clif Oliver handed over the management of this list to the U2UG.
2. There is a U2UG website: http://www.u2ug.org/
3. The U2UG is organizing a general meeting to coincide with the IBM Data
Management Conference in September (see the web site for details).
4. The board has been working on ways to share information about U2 beyond
the lists and the web site.

All of this with just 13 members of the founding board! And that's the
reason for this message. We've reached the point where we need help. Your
help. Here is a list of the volunteer opportunities available to you in
helping to bring this valuable organization into a thriving existence.

1. Nominations committee - We need people to help run the nominating
committee. They will help conduct an honest election. We need to begin this
process by September 2004.
2. Web site help - help us manage the content on the web site.
3. We also need everyone to consider contributing content. We need your
success stories, funny stories about the SORT verb, articles about
multivalue database theory, whatever you have.
4. Newsletter - we need department editors and contributors.
5. U2 Promotion - We need people who are willing to put a U2UG member
sticker and link on their home pages (personal and corporate) and otherwise
promote these powerful products.

Looking forward to your support,

Dana Baron
System Manager
Smugglers' Notch Resort
(and U2 Founding Board Member)

P.S. - If you received two copies of this message its probably because you
are a member of both the U2-community and U2-users lists.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] U2 on HP-Ux + Itanium

2004-07-09 Thread Brutzman, Bill
I am writing to inquire... When is UniVerse [or UniData] expected to be
ready on HP-Ux + Itanium ?

I like to think that I have been waiting patiently...

Please advise.

Regards,

Bill Brutzman
Manager, IT
HK MetalCraft Mfg Corp
PO Box 775
35 Industrial Road
Lodi  NJ  07644-0775 

973.471.7770 x145
973.471.9666 .fax

[EMAIL PROTECTED]
www.hkMetalCraft.com
 Brutzman, Bill.vcf 

[demime 1.01d removed an attachment of type application/octet-stream which had a name 
of Brutzman, Bill.vcf]
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] capturing problem

2004-07-09 Thread John Reid
We've been getting this error in u2 - 10.08 with PICK.FORMAT for quite a
while. It happens only on a few applications and very frequently for those
applications.  

The error message is:
Unable to create capture file. The error code number is 020291. It runs as a
phantom, and so is only spotted if someone looks at the PH files or the
errlog. I believe that we have support calls in on the matter, but I havent
heard any resolution.


Here is a code sample:
   
 [EMAIL PROTECTED]
 CMD=\SELECT REMITT.WORK WITH PORT = \:USERNO:\\ 
 EXECUTE CMD CAPTURING OUTPUT  
 CRT OUTPUT
 
 Anyone know of a cause?
Thanks
Unable to create capture file.


This e-mail, including attachments, may include confidential and/or 
proprietary information, and may be used only by the person or entity to 
which it is addressed. If the reader of this e-mail is not the intended 
recipient or his or her authorized agent, the reader is hereby notified 
that any dissemination, distribution or copying of this e-mail is 
prohibited. If you have received this e-mail in error, please notify the 
sender by replying to this message and delete this e-mail immediately. 
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UniRPC question

2004-07-09 Thread Nick Cipollina
Thanks for all your help.  I found what I was missing.

Thanks,
 
Nick Cipollina
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Wendy Smoak
Sent: Friday, July 09, 2004 3:06 PM
To: [EMAIL PROTECTED]
Cc: Nick Cipollina
Subject: RE: [U2] UniRPC question

Nick Cipollina wrote:
 What needs to be in the /etc/hosts file to start the unirpc 
 service.  That seems to be the only thing I'm missing to start unirpc.

I don't recall having to add anything special to /etc/hosts to get the
RPC to work.  Is it not starting, or not answering once it's started?

There's a page on the Wiki, but it doesn't have much info [yet]:
http://www.pickwiki.com/cgi-bin/wiki.pl?RPCDaemonHelp

Check your unirpcservices file-- for UniData it needs a 'udcs' line,
ours looks like this:
udcs /app/ud60/bin/udapi_server * TCP/IP 0 3600

On UniVerse I think it's uvcs but I don't know if the rest of the line
would be the same.

-- 
Wendy Smoak
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


NOTICE OF CONFIDENTIALITY: The information contained in this transmission,
and in any accompanying documents, constitutes confidential information
belonging to Heritage Information Systems, Inc.  This information is
intended only for the use of the individual or entity named above.  If you
are not the intended recipient of this transmission, you are hereby notified
that any disclosure, copying, distribution, or the taking of any action in
reliance of this information, is strictly prohibited.  If you have received
this message in error, please immediately notify us by telephone, at
804-644-8707 to arrange for its proper destruction.  Thank you.

[demime 1.01d removed an attachment of type application/octet-stream which had a name 
of Nick Cipollina.vcf]
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


[U2] [OT] list management - somewhat related to keep alives

2004-07-09 Thread Buss, Troy \(Logitek Systems\)
Speaking of keep alives... Is there not a way with this list to filter
out ALL messages remotely resembling 'out of office' auto replys?


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Friday, July 09, 2004 9:03 AM
To: [EMAIL PROTECTED]
Subject: [U2] Gary Canedy/users/Promutualgroup is out of the office.

I will be out of the office starting  07/09/2004 and will not return
until 07/13/2004.

Vacation...  I will respond to your message when I return.
---
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Unidata keystroke capture

2004-07-09 Thread Mark Johnson
Not for nuthin' but:

A. Why have 2 statements as shown.
B. As a programmer with knowledge of CHAR and SEQ, why don't you figure this
out for yourself. That's the basis for programming, learning the
combinations of commands and statements.

Write a loop program and print the value of KEY, remembering what actual key
you pressed. It's not that hard.

Lemme throw in some other concerns. If you're venturing into capturing all
the keys like delete and insert, you're embarking on keyboard mapping
that's somewhat related to the emulator and the terminal emulation you are
running. You would either have to stay generic (A-Z, 0-9 etc) or maintain
lookup tables to convert the IN() values into multiple expressions.

Also along those lines, certain single keystrokes like Insert may generate
more than one submitted character and you'll have to digest them properly.
It's a shame that we don't have access to the PC keyboard scancodes. I
couldbe wrong on that last statement.

my 1 cent.
- Original Message -
From: Ralph Burton [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, July 09, 2004 4:53 PM
Subject: [U2] Unidata keystroke capture


 I'm trying to determine for my homegrown editor
 when a keystroke is pressed in Unidata.

   KEY = IN()
   KEY.ID=KEY

What do I need to do next to make the KEY.ID
 into a useful value to check?

 CHAR?
 SEQ?


 Thanks,
 Ralph
 ---
 u2-users mailing list
 [EMAIL PROTECTED]
 To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [OT] list management - somewhat related to keep alives

2004-07-09 Thread Larry Hiscock
The offending user has been unsubscribed.  Up until now, we haven't done
anything because these haven't been a problem.  The IBM email server is
smart enough not to continue to send vacation responders to the list with
every post (the only other out of office responders I've seen have come
from some of the IBM'ers who are subscribed).

Larry Hiscock
Moderator

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Buss, Troy (Logitek
Systems)
Sent: Friday, July 09, 2004 2:28 PM
To: [EMAIL PROTECTED]
Subject: [U2] [OT] list management - somewhat related to keep alives

Speaking of keep alives... Is there not a way with this list to filter
out ALL messages remotely resembling 'out of office' auto replys?
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Why can't a globally cataloged programs have command linearguments?

2004-07-09 Thread Ray Wurlod
Because any line starting with * and containing a space is a comment.
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] capturing problem

2004-07-09 Thread Ray Wurlod
Where does UVTEMP point?  (This is where the capture files are created.)  Is this file 
system full, and/or does the executing user have rxw permission to the UVTEMP 
directory?
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Unidata keystroke capture

2004-07-09 Thread FFT2001
In a message dated 7/9/2004 2:02:49 PM Pacific Daylight Time, 
[EMAIL PROTECTED] writes:


 I'm trying to determine for my homegrown editor when a keystroke is pressed 
 in Unidata.
 
   KEY = IN()
   KEY.ID=KEY
   
What do I need to do next to make the KEY.ID into a useful value to 
 check?
 
 CHAR?
 SEQ?

Hire a consultant. By the way why not just say KEY.ID = IN()
Voila! I have reduced your program by 50% ! Send me my check, thnks.
Make sure you work on the arrow, insert, delete, home, and end keys first, 
they tend to be the deal breakers when making your own editor.  Tab, Esc, 
backspace, enter are relatively easy in comparison.
Will Johnson
Fast Forward
---
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/