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.
Hi, My requirement is to sort dates which are in alphanumeric format in ascending order. I am facing an issue especially when I have dates (say 12-01-04,01-01-05). The dates are sorted in this order 01-01-05, 12-01-04). It should be sorted in the ascending order from the year 04 to 05.
TABLE FILE SQLOUT PRINT metric1/D16.4 attr2 AND COMPUTE COMPUTE TRANSDATE/YYMD = HDATE(attr2, 'YYMD'); TIMELINE1/I6MDY =DATECVT(TRANSDATE, 'YYMD', 'I6MDY'); TIMELINE/A8=EDIT(TIMELINE1,'99-99-99'); ON TABLE HOLD END
GRAPH FILE HOLD SUM metric1/D16.4 AS '' ACROSS TIMELINE AS '' ON GRAPH SET 3D OFF ON GRAPH SET STYLE * TYPE=DATA, ACROSSCOLUMN=metric1, COLOR=RGB(154 51 255), $ ENDSTYLE END
Can anyone please suggest a solution for this issue?
Thanks, Suji.This message has been edited. Last edited by: Kerry,
Yes. It is working fine. I have another question. COMPUTE TIMELINE/MDY = TRANSDATE ; I need to get date values in this format '01232005' and they have to be sorted in ascending order. But I dont want to have '/' slashes in between the dates. Can you please suggest a solution .
Or, sort by a date field but display the alhpa field:
TABLE FILE SQLOUT
PRINT
metric1/D16.4
attr2
AND COMPUTE
COMPUTE TRANSDATE/YYMD = HDATE(attr2, 'YYMD');
TIMELINE1/I6MDY =DATECVT(TRANSDATE, 'YYMD', 'I6MDY');
TIMELINE/A8=EDIT(TIMELINE1,'99-99-99');
ON TABLE HOLD
END
GRAPH FILE HOLD
SUM
metric1/D16.4 AS ''
ACROSS TRANSDATE NOPRINT
ACROSS TIMELINE AS ''
ON GRAPH SET 3D OFF
ON GRAPH SET STYLE *
TYPE=DATA, ACROSSCOLUMN=metric1, COLOR=RGB(154 51 255), $
ENDSTYLE
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