RE: [U2] Time conversion code

2007-06-10 Thread Norman, David \(SAAS\)
The change in functionality was documented at 10.0 as a GTAR fix. As there are only 24 hours in a day, the logic was that MT shouldn't go above 24 hours. I recall there was discussion on the list about this at the time. David Norman Senior Software Engineer SA Ambulance Se

RE: [U2] Time conversion code [not-secure]

2007-06-08 Thread Hennessey, Mark F.
lto:[EMAIL PROTECTED] Behalf Of Hennessey, Mark F. Sent: Friday, June 08, 2007 10:17 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Time conversion code You have received an important delivery from mark.hennessey Please pick up the package at the following Web address: https://smail.ct.gov/ime?

RE: [U2] Time conversion code

2007-06-08 Thread mark . hennessey
You have received an important delivery from mark.hennessey Please pick up the package at the following Web address: https://smail.ct.gov/ime?x=4-247937-163256-3PVDGN0E The package will expire on Sunday July 08, 2007 at 10:18:45 EDT4 .

RE: [U2] Time conversion code

2007-06-08 Thread andi_mayer
9.6.1.3 IDEAL: 01:00:00 PICK : 25:00:00 -- MW --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] Time conversion code

2007-06-07 Thread Allen E. Elwood
I've always done something in this vein... DAYS = INT(DURATION/86400) TEMP = DAYS * 86400 HOURS.SECONDS = OCONV((DURATION - TEMP),'MTHS' TOTAL.TIME = DAYS:"DAYS ":HOURS.SECONDS oops, but you want hours, so: HOURS = INT(DURATION/3600) TEMP = HOURS * 3600 MINUTES = INT((DURATION - TEMP)/60) TOTAL

RE: [U2] Time conversion code {Unclassified}

2007-06-07 Thread Bill Haskett
('9', 'MTS')" COL.HDG "TIME" 14:31:45 Jun 07 2007 1 VOC... @RECORDTIME.. version7.125:00:00 1 record listed Bill >-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED] On Behalf Of >HENDERS

RE: [U2] Time conversion code {Unclassified}

2007-06-07 Thread HENDERSON MIKE, MR
0 he RELEASE LEVEL of this accou nt 10.1.18 ADMIN 10.1.18 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stevenson, Charles Sent: Friday, 8 June 2007 4:26 a.

RE: [U2] Time conversion code

2007-06-07 Thread Eric Armstrong
@listserver.u2ug.org Subject: RE: [U2] Time conversion code > From: Anthony Youngman > If it has been changed, it should be logged as a bug! > > From: Norman, David > >This (IMO unwanted) change in functionality occurred at 10.0. UV users any & all, Please post resul

RE: [U2] Time conversion code

2007-06-07 Thread Tim Franklin
PIOPEN.FOR MAT 10.1.7 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: 06 June 2007 12:32 To: u2-users@listserver.u2ug.org Subject: RE: [U2] Time conversion code Tim Sorry - 'tis flavor depe

Re: [U2] Time conversion code

2007-06-07 Thread Jerry
he RELEASE LEVEL of this accou nt 10.1.12 ADMIN 10.1.12 UV on Red Hat - Original Message - From: "Stevenson, Charles" <[EMAIL PROTECTED]> To: Sent: Thursday, June 07, 2007 11:26 AM

Re: [U2] Time conversion code

2007-06-07 Thread Richard A. Wilson
LIST VOC "RELLEVEL" EVAL "@RECORD" EVAL "9" CONV "MTS" 01:31:41pm 07 Jun 2007 PAGE1 VOC. @RECORD... 9. RELLEVEL X 25:00:00 10.0.0 PICK PICK.FORMA T 10.0.0 LIST VOC "RELLEVEL" EVAL "@RECORD" EV

RE: [U2] Time conversion code

2007-06-07 Thread Mike Dallaire
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Eastwood Sent: Thursday, June 07, 2007 12:47 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Time conversion code VOC. @RECORD... 9. RELLEVEL X 25:00:00 10.2.4

Re: [U2] Time conversion code

2007-06-07 Thread Charles Barouch
Charles, UV Account VOC.@RECORD...9. RELLEVELX-type - T01:00:00 he RELEASE LEVEL of this accou nt 10.2.0 ADMIN 10.2.0 Pick flavored account: VOC...

RE: [U2] Time conversion code

2007-06-07 Thread Mark Eastwood
:26 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Time conversion code UV users any & all, Please post results to this simple test: LIST VOC "RELLEVEL" EVAL "@RECORD" EVAL "9" CONV "MTS" --- u2-users mailing list u2-users@listserv

RE: [U2] Time conversion code

2007-06-07 Thread Stevenson, Charles
> From: Anthony Youngman > If it has been changed, it should be logged as a bug! > > From: Norman, David > >This (IMO unwanted) change in functionality occurred at 10.0. UV users any & all, Please post results to this simple test: LIST VOC "RELLEVEL" EVAL "@RECORD" EVAL "9" CONV "MTS"

RE: [U2] Time conversion code

2007-06-07 Thread Anthony Youngman
ctice ... Cheers, Wol -Original Message- From: Norman, David (SAAS) [mailto:[EMAIL PROTECTED] Sent: 07 June 2007 01:18 To: u2-users@listserver.u2ug.org Subject: RE: [U2] Time conversion code This (IMO unwanted) change in functionality occurred at 10.0. I have written a user conversion to retur

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 B

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 = S

RE: [U2] Time conversion code

2007-06-06 Thread brian
.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 To: u2-users@listserver.u2ug.org Subject: RE: [U2] Time conversion code Tim A regular MT conversion

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 mail

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 Tim Franklin
2007 10:54 To: u2-users@listserver.u2ug.org Subject: RE: [U2] Time conversion code 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 t

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 runn