[U2] Time conversion code

2007-06-06 Thread Tim Franklin
I have an internal time of greater than 24hrs (86400) is there a conversion code I can use to display the actual time in hours:minutes e.g. 120:45. We are running Universe 10.1.17 Legal Disclaimer: The information contained in this message may be privileged and confidential. It is

RE: [U2] Time conversion code

2007-06-06 Thread brian
Tim A regular MT conversion should do that: OCONV(9,MT) - 25:00 Just don't use the H option (MTH or MTHS). Regards Brian I have an internal time of greater than 24hrs (86400) is there a conversion code I can use to display the actual time in hours:minutes e.g. 120:45. We are

[U2] LONGNAMES oddity

2007-06-06 Thread Anthony Youngman
Can anybody explain this? Our upgrade replaced CREATE.FILE etc, so it started creating short file names. But ... When this was fixed by doing a LONGNAMES ON, doing a CREATE.FILE immediately afterwards still created a short file. Weird! Cheers, Wol --- u2-users mailing list

RE: [U2] Time conversion code

2007-06-06 Thread Tim Franklin
Thanks Brian, I have tried that: PRINT OCONV(9,'MT') and get 01:00 The flavor we use is PIOPEN.FORMAT should we use any options? Regards, Tim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: 06 June 2007 10:54

[U2] Help in creating Retrieve statement for a multivalue field

2007-06-06 Thread k_hw
Thank you all for the help. BY-EXP did the work. I need another help to sort the data by one or multiple characters in a field. 01*GAN100*GAN100*WS09*07-In this filed how do I query the last two characters like 07 (year) or WS09 (Route)? Thanks again. Krish --- u2-users mailing list

RE: [U2] Time conversion code

2007-06-06 Thread Bjorn Behr
CRT OCONV(TIME,MTS) works for us. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Franklin Sent: 06 June 2007 10:09 To: u2-users@listserver.u2ug.org Subject: [U2] Time conversion code I have an internal time of greater than 24hrs (86400) is there a

Re: [U2] Time conversion code

2007-06-06 Thread Martin Phillips
Hi Brian, A regular MT conversion should do that: OCONV(9,MT) - 25:00 Interestingly, it doesn't. Or, at least, not in Ideal flavour. This may be another undocumented flavour difference. I certainly thought this worked. Martin Phillips, Ladybridge Systems Ltd --- u2-users

RE: [U2] Help in creating Retrieve statement for a multivalue field

2007-06-06 Thread Anthony Youngman
You can use an EVAL or an i-descriptor. For example, assuming your field is the ID, then EVAL @ID[2] will give you the year, and EVAL FIELD(@ID, '*', 4, 1) will give you the route. (or you could use field(5) for the year :-) Cheers, Wol -Original Message- From: [EMAIL PROTECTED]

RE: [U2] Time conversion code

2007-06-06 Thread brian
Tim Sorry - 'tis flavor dependent :( Not sure how to get round that except by some scraggy coding: Crt Int(YourTime/3600):::Mod(YourTime,3600) Regards Brian Thanks Brian, I have tried that: PRINT OCONV(9,'MT') and get 01:00 The flavor we use is PIOPEN.FORMAT should we use any

Re: [U2] Time conversion code

2007-06-06 Thread Charles Barouch
Tim, You could just roll your own: CALL ELAPSED(9,TIMEOUT) CRT TIMEOUT SUBROUTINE ELAPSED(SECONDS,TIMEOUT) * by Charles Barouch ([EMAIL PROTECTED]) * on 6/6/2007 * *** HOURS = INT(SECONDS/3600) SECONDS = SECONDS - (HOURS * 3600) MINUTES = INT(SECONDS/60) SECONDS =

RE: [U2] LONGNAMES oddity

2007-06-06 Thread Kurt Neumann
What version are you working on? Having tested with 10.1.18 it worked fine, but on 10.2.0 we get the same behavior as what you describe, so it seems to be a bug which has come into 10.2. Kurt Neumann -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [U2] LONGNAMES oddity

2007-06-06 Thread Anthony Youngman
We're running 10.2.3 Cheers, Wol -Original Message- From: Kurt Neumann [mailto:[EMAIL PROTECTED] Sent: 06 June 2007 11:42 To: u2-users@listserver.u2ug.org Subject: RE: [U2] LONGNAMES oddity What version are you working on? Having tested with 10.1.18 it worked fine, but on 10.2.0 we get

RE: [U2] LONGNAMES oddity

2007-06-06 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

[U2] Haydon Bishop is out of the office.

2007-06-06 Thread haydon . bishop
I will be out of the office starting 06/06/2007 and will not return until 07/06/2007. I will respond to your message when I return. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] Soap Pt 2

2007-06-06 Thread gerry-u2ug
Thanks Nick, I modified my sub to format the entire soap message and use SoapSetRequestContent rather than SoapSetParameters to get around this. Now I see why the IBM online samples do the manual message building - because using set parameters doesn't work in all cases. Gerry -Original

[U2] UV telnet disconnects over WAN

2007-06-06 Thread Gabriel Green
Ever since we switched to a new network (but before as well), we've experienced lots of unexpected disconnects--people in the middle of transactions or actively doing things suddenly becoming disconnected, often leaving the transaction they were in locked which I then must clear manually. The new

[U2] Automated Faxing

2007-06-06 Thread karlp
We are on an AIX system running Universe. Currently we are using Esker Software's VSI-FAX product. They have come out with version 6 and we upgraded in good faith. Like UV, the upgrades are free with continued maintenance. The upgrade went smoothly, however a bug appeared shortly causing faxes to

Re: [U2] UV telnet disconnects over WAN

2007-06-06 Thread Martin Phillips
I am going to take a wild guess that you are in the US and hence my UK experiences are probably worthless. For a long time, we have had a 512k ADSL connection because it was all that was available at our location. Ten days ago we upgraded to an 8M connection. It has been a disaster and is

RE: [U2] UV telnet disconnects over WAN

2007-06-06 Thread Steve Ferries
The new network is a DSL-based MPLS product We use DSL at our Montreal office but over LAN Extension which is also a Bell network but no guaranteed service level. We run about 120 telnet connections, and we do not have any issues. Ping times vary from 20ms to 800ms. We had some issues early on,

RE: [U2] UV telnet disconnects over WAN

2007-06-06 Thread Anthony Youngman
Probably not relevant ... I know some early Demon broadband adopters had nightmares when BT upgraded their kit. Because it wouldn't affect any subscribers they did it without informing any ISPs, with the result that when customers complained the ISPs didn't have a clue. If you were an early

[U2] UD IP Address

2007-06-06 Thread Bill Haskett
Most of our clients connect to our UniData system from the internet. Since UniData isn't able to quickly tell me who's logged on where, I've had to create a LOGINS file to track where everyone is logged into. This tracking was inserted into our login process so we've worked-around the missing

[U2] [UV] Trap OPEN error for corrupted file

2007-06-06 Thread Jeff Fitzgerald
In a BASIC program that OPENs a file, if the file being OPENed is damaged (e.g. a bad blink or a 32-bit file that has been truncated because it tried to extend past 2 GB) the OPEN fails and the program aborts. As far as I can tell, this type of error isn't trappable and doesn't take the ON ERROR

RE: [U2] [UV] Trap OPEN error for corrupted file

2007-06-06 Thread Brutzman, Bill
We have experienced (almost never) OPEN errors that go to the ELSE clause such as... open 'CM' to F.Cust else S = CM ; gosub 9950 Accordingly, new code here is written... open 'CM' to F.Cust else null I do not forsee much market demand in this arena... --Bill -Original

RE: [U2] Automated Faxing

2007-06-06 Thread Tony Gravagno
karlp wrote: We are on an AIX system running Universe. Currently we are using Esker Software's VSI-FAX product. They have come out with version 6 The upgrade went smoothly, however a bug appeared From someone completely ignorant of the way VSI-FAX installs... Is there any way to run

RE: [U2] UniVerse on SAN?

2007-06-06 Thread Normandin, Jerry
Hi Dan, I work at Intuit Eclipse. We have customers with EMC Clarions and also the IBM FAStT DS4000. Some customers have the san dedicated for the database, others it's a mixed environment. Our internal production Eclipse server that runs our tracker system is connected to an EMC Clarion.

[U2] My UniData Document PDF is Broken!

2007-06-06 Thread David Wolverton
I have what is the current version of the Unidata documentation - I go to Chapter 9 of the BASIC Extensions, the Document Object Model - my Index to that chapter shows what I want to see, but the actual chapter of infomration is wrong. It appears to be Chapter 11 data. (Which repeats in Chapter

RE: [U2] Time conversion code

2007-06-06 Thread Norman, David \(SAAS\)
This (IMO unwanted) change in functionality occurred at 10.0. I have written a user conversion to return the time greater than 24 hours: 01: SUBROUTINE U2134(ANSWER,STATUS,DATA,CONVTYPE) 0002: * OCONV to show hours 24 after UV10 changes hh:mm 0003: * 0004: * CATALOG AS $2134 e.g. CATALOG

RE: [U2] My UniData Document PDF is Broken!

2007-06-06 Thread Dan Fitzgerald
http://www-306.ibm.com/software/data/u2/pubs/library/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Wolverton Sent: Wednesday, June 06, 2007 8:03 PM To: u2-users@listserver.u2ug.org Subject: [U2] My UniData Document PDF is Broken! I have what is

[U2] [uv] Using XML commands in Basic

2007-06-06 Thread Norman, David \(SAAS\)
UV 10.0.16 (Information) HP-UX. I have a program that processes incoming XML quite happily using various .ext extraction files. I'm not sure, however, what XML commands need to be run if an XML command has an error. For instance, if the PrepareXML fails, do I have to do a ReleaseXML ? And if the

Re: [U2] My UniData Document PDF is Broken!

2007-06-06 Thread Wally Terhune
You are right. The version in the zip file on the web seems to be 'broken' as you describe. I'll see about getting this resolved. Wally Terhune U2 Support Architect IBM Information Management 4700 South Syracuse Street, Denver, CO 80237 Tel: 303.773.7969 Fax: 303.773.5915 [EMAIL PROTECTED]

Re: [U2] My UniData Document PDF is Broken!

2007-06-06 Thread Wally Terhune
This version on the Web seems to have chapter 9. This is the 7.1.0 version. I haven't grabbed the zip file with the 7.1a version to review that. Quite a bit more to download... http://publibfi.boulder.ibm.com/epubs/pdf/29916610.pdf Wally Terhune U2 Support Architect IBM Information Management

RE: [U2] My UniData Document PDF is Broken!

2007-06-06 Thread Bill Haskett
I don't think this works. I have the same documentation problem in a Master copy of UD I received from IBM. It would be nice to get a corrected copy of that documentation. Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Fitzgerald Sent:

RE: [U2] UD IP Address

2007-06-06 Thread Hona, David S
Users coming in via or via the same remote firewall/proxy server/router would all have the same IP address. Regards, David -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bill Haskett Sent: Thursday, June 07, 2007 3:02 AM To: u2-users@listserver.u2ug.org

RE: [U2] UniVerse on SAN?

2007-06-06 Thread Horacio Pellegrino
We have a Dell Windows based UV dedicated server for 350users and I use 6 disks and 2 SANs with 10 and 12 disks each... It flies! Horacio -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Fitzgerald Sent: Wednesday, June 06, 2007 4:20 PM To:

RE: [U2] Automated Faxing

2007-06-06 Thread Hona, David S
I'm guessing that you did test it (in your test environment) and everything went according to your test plan? If you just upgraded in good faith, well that's business risk decision that no vendor can or should make for their clients. Regards David -Original Message- From: [EMAIL

RE: [U2] UD IP Address

2007-06-06 Thread Bill Haskett
David: I have a Netgear 5GT firewall/NAT that is assigned an external IP address from Comcast. My external web access uses this assigned IP address and my email does too. What's up with UD? Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hona,

RE: [U2] My UniData Document PDF is Broken!

2007-06-06 Thread David Wolverton
Thanks - I'll use the 'standalone' PDF -- it appears to be older than the ZIP version - but older is better in this case, Thanks again Wally - David W. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wally Terhune Sent: Wednesday, June 06, 2007