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.
TABLE FILE R040H020
SUM
COMPUTE DIVISION_NODE_NM2/A40 = 'TOTAL BANK';
METRIC_AMT
PCT.METRIC_AMT/D8.4 WITHIN ASSET_CLASS_SORT AS 'METRIC_PCT'
BY METRIC_CD
BY METRIC_DESC
BY ASSET_CLASS_SORT
BY DELQ_DAYS_CNT2
ON TABLE HOLD AS R040H040
MORE
FILE R040H021
MORE
FILE R040H030
MORE
FILE R040H031
MORE
FILE R040H032
END
generate a FOC168 error:
(FOC168) THE 'WITHIN' FIELD IS NOT ALSO A 'BY' OR 'ACROSS' FIELD
The fieldname after the WITHIN option must also be mentioned in the
request statement as either a BY field or as an ACROSS field.
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
PCT.METRIC_AMT/D8.4 WITHIN ASSET_CLASS_SORT AS 'METRIC_PCT' BY METRIC_CD BY METRIC_DESC BY ASSET_CLASS_SORT BY DELQ_DAYS_CNT2 ON TABLE HOLD AS R040H040
Don't use within but what happens if you move up the ASSET_CLASS_SORT to be the first BY?
Leah
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004
TABLE FILE R040H020
SUM
COMPUTE ASSET_CLASS_SORT/A02 = '20';
METRIC_AMT
PCT.METRIC_AMT/D8.4 WITHIN DIVISION_NODE_NM2 AS 'METRIC_PCT'
BY METRIC_CD
BY METRIC_DESC
BY DIVISION_NODE_NM2
BY DELQ_DAYS_CNT2
WHERE ASSET_CLASS_SORT IN ('21', '22');
ON TABLE HOLD AS R040H032
MORE
FILE R040H021
WHERE ASSET_CLASS_SORT IN ('21', '22');
END
Perhaps it's the number of MORE's...
It won't calculate the correct percentage if I move the field.
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