Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Decimal time to HH:MM:SS

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Decimal time to HH:MM:SS
 Login/Join
 
Member
posted
Can anyone let me know how to convert Decimal(6) to hh:mm:ss format.

DB field value 81515 (Decimal Val) to 8:15:15.

Thanks in advance
Riya

This message has been edited. Last edited by: Kerry,


WebFOCUS 8.1.05
Excel, PDF, Pivot, HTML
Windows
 
Posts: 29 | Registered: August 12, 2009Report This Post
Expert
posted Hide Post
EDIT it.
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
Ha! Good one Doug!

Like a fool, I went the long route:

DEFINE FILE CAR
DB_TIME/I6 = 81515;

DATE1/A8 = '20000101';
TIME1/A6 = EDIT(DB_TIME);

ALPHA_DATE_TIME/A20 = DATE1 | TIME1;
DT_FROM_ALPHA/HYYMDS = HINPUT(14, ALPHA_DATE_TIME, 8, 'HYYMDS');

TIME/HHIS = DT_FROM_ALPHA;
END

TABLE FILE CAR
PRINT 
DATE1
TIME1
ALPHA_DATE_TIME
DT_FROM_ALPHA
TIME
BY COUNTRY
END


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Member
posted Hide Post
Thanks Doug,
Just wondering if we already have any date function to do that instead of converting it to Alpha and edit it to hours, mins,sec.

Cheers
Riya


WebFOCUS 8.1.05
Excel, PDF, Pivot, HTML
Windows
 
Posts: 29 | Registered: August 12, 2009Report This Post
Expert
posted Hide Post
Date-Time functions require a date and a time, they don't work with just time.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Member
posted Hide Post
quote:
DB_TIME/I6 = 81515;

DATE1/A8 = '20000101';
TIME1/A6 = EDIT(DB_TIME);

ALPHA_DATE_TIME/A20 = DATE1 | TIME1;
DT_FROM_ALPHA/HYYMDS = HINPUT(14, ALPHA_DATE_TIME, 8, 'HYYMDS');

TIME/HHIS = DT_FROM_ALPHA;
END


Excellent That works! I totally forgot that i was just using time not Date-time.

Thank you Francis


WebFOCUS 8.1.05
Excel, PDF, Pivot, HTML
Windows
 
Posts: 29 | Registered: August 12, 2009Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Decimal time to HH:MM:SS

Copyright © 1996-2020 Information Builders