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.
DEFINE FILE GGSALES
DTEYM /YYM = DATE;
END
TABLE FILE GGSALES
SUM UNITS
BY DTEYM
BY TOTAL COMPUTE ID /P3 = IF DTEYM EQ LAST DTEYM THEN ID ELSE ID + 1;
BY STCD
ON TABLE HOLD AS TMP FORMAT FOCUS
END
-RUN
TABLE FILE TMP
SUM UNITS
BY STCD
ACROSS ID
ACROSS DTEYM AS ''
END
-RUN
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013
Sounds like a candidate for the McGyver technique.
Or, if you're reporting on an RDBMS that supports recursive CTE's or that has generator functions (or both), you could do it in SQL (using SQL passthru).
Especially the CTE's are fun queries to write, but you need to get your head in the right mode to understand how that recursion works.
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :
TABLE FILE SWI SUM VOLUME BY TIME_TIME_HIERARCHY_WEEK WHERE TIME_TIME_HIERARCHY_WEEK GE '&START_DATE'; WHERE TIME_TIME_HIERARCHY_WEEK LE '&END_DATE'; ON TABLE HOLD END
DEFINE FILE HOLD NEWSORT/I1=IF TIME_TIME_HIERARCHY_WEEK NE LAST TIME_TIME_HIERARCHY_WEEK THEN LAST NEWSORT + 1 ELSE 1; END