RE: [U2] A trail of bread crumbs

2007-02-13 Thread Steve Mayo
If I understand what you are asking for, try a SYSTEM(49). That will return
a delimited list of the calling stack. 

HTH,

Steve

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Susan Joslyn
Sent: Tuesday, February 13, 2007 8:19 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] A trail of bread crumbs

Greetings saviors.

I'm trying to find a system variable? Or anything that can tell me, from
within a BASIC program, How did I get here?  

Is there a trail of breadcrumbs for me to follow from within Unibasic, does
anyone know?

Just sign me,
Gretel

p.s. I'm a digest subscriber, (so busy luring witches into the woods, you
know) so if anyone has my answer for me, copy me directly, please!
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Re: Logging to Universe NT

2004-07-28 Thread Steve Mayo
You might want to check the group/local security policies for that machine.
Compare the differences between Administrator and webuser.

HTH,

Steve

In order for to login into Universe you must be an Admin user.
- Original Message - 
From: Kevin Vezertzis [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, July 28, 2004 11:30 AM


 Just wondering if anyone has any suggestions on how to allow 'non-admin'
 groups access to Universe on NT..my users that are members of Admin
 login perfectly, but a second group (webuser), has similar permissions
 and has been configured to log on locally, but is still not able to
 login.
  
 Thanks,
 Kevin
 ---
 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/


[U2] Proc

2004-06-23 Thread Steve Mayo
I know it's a dirty word, but I am in the need of a proc manual. My
client has over 200 procs of which some are very esoteric. 

Any help would be appreciated.

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


Re: [U2] Proc

2004-06-23 Thread Steve Mayo
Thank you all for the linksand to think I thought proc was dead and
gone ;-)


Steve,

Try
http://www-306.ibm.com/software/data/u2/pubs/library/100univ/univ_101.html
for the UniVerse Guide to ProVerb, Version 10.1 (G251-1922-00), which is a
reasonably complete Proc manual - IBM calls it ProVerb rather than Proc!

Susan M. Lynch
F.W. Davison  Company, Inc.

CONFIDENTIALITY NOTICE:
This e-mail message, and any accompanying documents, is for the sole use
of
the intended recipient(s) and may contain confidential and privileged
information.  Any unauthorized review, use, disclosure, distribution or
copying is prohibited.  If you are not the intended recipient, please
contact our office by email or by telephone at (508) 747-7261 and
immediately destroy all copies of the original message.

- Original Message -
From: Steve Mayo [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, June 23, 2004 4:42 AM
Subject: [U2] Proc


 I know it's a dirty word, but I am in the need of a proc manual. My
 client has over 200 procs of which some are very esoteric.

 Any help would be appreciated.

 Steve Mayo
 Oasis Automation
 ---
 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/


[U2] UD: My memory fails me....

2004-05-24 Thread Steve Mayo
Hi Everyone, 

On my W2k system when an error occurs (like uninitialized variables) the
system gives me the program and line number of the error. 

Ex. In BP\_TEST at line 1 WARNING: UNINITIALIZED VARIABLE USED! Zero
Assumed!

However on the Unix system, I get:
WARNING: UNINITIALIZED VARIABLE USED! Zero Assumed!  

I need to get the line number and program name and cannot find out how to
do it. I thought it was a UDT.OPTION, but after checking twice.

Any help would be appreciated.

Steve
---
u2-users mailing list
[EMAIL PROTECTED]
http://www.u2ug.org/listinfo/u2-users


RE: [U2] UD: My memory fails me....

2004-05-24 Thread Steve Mayo
I always compile with the -D option, ever since IBM said that it does not
cause any overhead. Here is what I did:

:AE SLM.BP TEST 
Top of TEST in SLM.BP, 1 line, 10 characters.
001: PRINT HELP 
Bottom.
*--: Q
Quit TEST in file SLM.BP unchanged.
:BASIC SLM.BP TEST -D
Compiling Unibasic: SLM.BP/TEST in mode 'p'.
Warning: Variable 'HELP' never assigned a value  
compilation finished
:CATALOG SLM.BP TEST DIRECT FORCE 
:TEST
WARNING: UNINITIALIZED VARIABLE USED! Zero Assumed!
0
:


Compile with the -D option to get the line # to show on a warning, 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Steve Mayo
Sent: Monday, May 24, 2004 7:53 AM
To: [EMAIL PROTECTED]
Subject: [U2] UD: My memory fails me

Hi Everyone, 

On my W2k system when an error occurs (like uninitialized variables)
the system gives me the program and line number of the error. 

Ex. In BP\_TEST at line 1 WARNING: UNINITIALIZED VARIABLE USED! Zero
Assumed!

However on the Unix system, I get:
WARNING: UNINITIALIZED VARIABLE USED! Zero Assumed!  

I need to get the line number and program name and cannot find out how
to do it. I thought it was a UDT.OPTION, but after checking twice.

Any help would be appreciated.

Steve
---
u2-users mailing list
[EMAIL PROTECTED]
http://www.u2ug.org/listinfo/u2-users
---
u2-users mailing list
[EMAIL PROTECTED]
http://www.u2ug.org/listinfo/u2-users
---
u2-users mailing list
[EMAIL PROTECTED]
http://www.u2ug.org/listinfo/u2-users


Re: [U2] UD: My memory fails me....

2004-05-24 Thread Steve Mayo
Thanks...that was the ticket

ECL command to restore the line number  display:
HUSHBASIC OFF

This is the default. You must have run 'HUSHBASIC ON' somewhere in your
application /LOGIN paragraph, etc.

Wally Terhune
Manager - U2 Advanced Technical Services
IBM DB2 Information Management Software
Tel: 303.294.4866 Fax: 303.294.4832
[EMAIL PROTECTED]

www.ibm.com/software/data/u2/support - Open, Query, Update, Search -
Online!

Don't miss out on the IBM DB2 Information Management Technical Conference
September 19-24, 2004 - Las Vegas, NV




 Steve Mayo
 [EMAIL PROTECTED]
 Sent by:   To
 [EMAIL PROTECTED] [EMAIL PROTECTED]
 stserver.u2ug.org  cc

   Subject
 05/24/2004 07:52  [U2] UD: My memory fails me
 AM


 Please respond to
 u2-users






Hi Everyone,

On my W2k system when an error occurs (like uninitialized variables) the
system gives me the program and line number of the error.

Ex. In BP\_TEST at line 1 WARNING: UNINITIALIZED VARIABLE USED! Zero
Assumed!

However on the Unix system, I get:
WARNING: UNINITIALIZED VARIABLE USED! Zero Assumed!

I need to get the line number and program name and cannot find out how to
do it. I thought it was a UDT.OPTION, but after checking twice.

Any help would be appreciated.

Steve
---
u2-users mailing list
[EMAIL PROTECTED]
http://www.u2ug.org/listinfo/u2-users

[demime 1.01d removed an attachment of type image/gif which had a name of
graycol.gif]

[demime 1.01d removed an attachment of type image/gif which had a name of
pic09370.gif]

[demime 1.01d removed an attachment of type image/gif which had a name of
ecblank.gif]
---
u2-users mailing list
[EMAIL PROTECTED]
http://www.u2ug.org/listinfo/u2-users
---
u2-users mailing list
[EMAIL PROTECTED]
http://www.u2ug.org/listinfo/u2-users