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.
My assumption is that the alphanumeric column (A4V) contains two digits that represent hours and two digits that represent minutes. To convert this alphanumeric column to a date/time column, a date must be inserted - I use 9999/12/31 as the dummy date. 'HHIA' represents a date/time column (the first H), formatted to show hours (the second H), minutes (I) and AM/PM (A).
DEFINE FILE CAR
MY_TIME/A4V =
IF COUNTRY EQ 'ENGLAND' THEN '1010'
ELSE IF COUNTRY EQ 'FRANCE' THEN '2123'
ELSE IF COUNTRY EQ 'ITALY' THEN '0559'
ELSE IF COUNTRY EQ 'JAPAN' THEN '2359'
ELSE '1129';
TEMP_DATETIMEX/A14 = '99991231' | MY_TIME;
MY_TIME_F1/HHIA = HINPUT(14, TEMP_DATETIMEX, 8, 'HHIA');
MY_TIME_F2/HHIa = HINPUT(14, TEMP_DATETIMEX, 8, 'HHIa');
END
TABLE FILE CAR
PRINT
MY_TIME
TEMP_DATETIMEX
MY_TIME_F1
MY_TIME_F2
END
This message has been edited. Last edited by: Francis Mariani,
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
Thanks for the help. I used the example from Francis and applied it to my scenario. I was able to concatenated a start time with an end time using the following code.