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.
Is it possible to convert from an alpha in the format mm/dd/yy hh:mm:ss to a datetime that includes all the time information in a define?This message has been edited. Last edited by: <Kathryn Henning>,
MY_ALPHA_DATE_TIME1 is the alpha column containing the date-time data. TEMP_ALPHA_DATE_TIME1 strips the date-time separators and adds the century. TEMP_DATE_TIME1 is the converted date-time column in YYYY/MM/DD HH:MM:SS format DEF_DATE_TIME1 is the converted date-time column in the desired format.
For some reason, using MM/DD/YYYY dates with HINPUT does not seem to work, see TEMP_ALPHA_DATE_TIME2 and DEF_DATE_TIME2.
To avoid problems, I always use dates in YYYY/MM/DD format.
-SET &ECHO='ON';
DEFINE FILE CAR
MY_ALPHA_DATE_TIME1/A23 WITH MODEL = '03/30/15 16:25:05';
TEMP_ALPHA_DATE_TIME1/A14 = '20' || EDIT(MY_ALPHA_DATE_TIME1, '$$$$$$99')
|| EDIT(MY_ALPHA_DATE_TIME1, '99')
|| EDIT(MY_ALPHA_DATE_TIME1, '$$$99')
|| EDIT(MY_ALPHA_DATE_TIME1, '$$$$$$$$$99$99$99');
TEMP_DATE_TIME1/HYYMDS = HINPUT(14, TEMP_ALPHA_DATE_TIME1, 8, 'HYYMDS');
DEF_DATE_TIME1/HMDYS = TEMP_DATE_TIME1;
TEMP_ALPHA_DATE_TIME2/A14 = EDIT(MY_ALPHA_DATE_TIME1, '99$99$2099$99$99$99');
DEF_DATE_TIME2/HMDYYS = HINPUT(14, TEMP_ALPHA_DATE_TIME2, 8, 'HMDYYS');
END
TABLE FILE CAR
PRINT
MY_ALPHA_DATE_TIME1
TEMP_ALPHA_DATE_TIME1
TEMP_DATE_TIME1
DEF_DATE_TIME1
TEMP_ALPHA_DATE_TIME2
DEF_DATE_TIME2
WHERE RECORDLIMIT EQ 1
END
-RUN
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
SET DEFCENT=19, YRTHRESH=20
DEFINE FILE CAR
A_DATE/A17 = '03/30/15 22:34:27';
D_DATE/HYYMDS = HINPUT(17,A_DATE,8,'HMDYS');
END
TABLE FILE CAR
PRINT D_DATE
BY COUNTRY
END
Alan. WF 7.705/8.007
Posts: 1451 | Location: Portugal | Registered: February 07, 2007
Alan, yes it does! I don't know why I thought I needed to rearrange the date components - all my example code stripped the slashes and colons. Thanks for the tip.
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
When I tried both examples, I couldn't get the time information to stay after using the HINPUT. It would just give me a date and the time information was missing.