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 VOL_REPT SUM ATC/D19.2-C AS '' BY COUNTRY BY NEW_PRODUCTS AS 'NEW BY TYPE1 ACROSS MNTH AS '' ON COUNTRY SUBTOTAL AS 'TOTAL' HEADING "VOLUME REPORT" FOOTING "Report Filtered by:<+0>ATC" "Report Produced in:<+0>Euros" "PageWHERE ( CONVT_TO_CRRNCY EQ 'EUROS' ) AND ( MNTH GE '&FIRST_DT' );
In addition to the above, is it possible to have records for a particular country printed on the next page if it can not be contained in one page? for example: US = 10 records CA = 5 records UK = 7 records
Assuming a page can only contain 20 records, I want to be able to print records for US and CA on one page and then all 7 UK records be printed on the next page instead of printing 5 UK records in page 1 and then the remaining 2 records in the next page.
Thank you.This message has been edited. Last edited by: Kerry,
I have not been able to reproduce your error using CAR or GGSALES. What is the format of VOL_REPT?
The error text is: (FOC11306) REQUESTS CAUSING PARTIAL AGGREGATION ARE NOT ALLOWED Partial Aggregation is caused by presence of "IN GROUPS OF", multiple erb/key sets as well as active non-Parent/Child hierarchies that do not have ssociated sort keys or filter tests resulting in unique member selection.
Re: countries on separate pages, use: ON COUNTRY NOSPLIT. If you want to have US and Canada on the same page, create a DEFINE field representing US+CA and use it as a BY field before COUNTRY
e.g. something like:
DEFINE FILE VOL_REPT
CTRY2/I1 = IF COUNTRY EQ 'US' OR 'CA' THEN 1 ELSE 2;
END
TABLE FILE VOL_REPT
...
BY CTRY2 NOPRINT NOSPLIT
BY COUNTRY
BY.....
END