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, I am using Page Break on one of the columns in the sort criterion, but whats happening is the Total comes on the next page. I have tried using SET PRINTPLUS = ON; but it is not working.... can somebody suggest anyother workaround....
Try using SUBFOOT to do what you want. I think in this case WF is doing exactly what you have asked by placing each sort break data on its own page.
TABLE FILE CAR
SUM SALES
BY COUNTRY PAGE-BREAK AND SUBFOOT
" "
"TOTAL FOR <COUNTRY <ST.SALES"
ON TABLE SUBFOOT
" "
"TOTAL SALES ALL COUNTRIES <TOT.SALES"
ON TABLE PCHOLD FORMAT PDF
END
Alan. WF 7.705/8.007
Posts: 1451 | Location: Portugal | Registered: February 07, 2007
As you didn't post your code are you referring to the sub total on a sort break or the final total of the report? As jnc mentions on the sub total nosplit would be a good option as is Alan's subfoot (which does result in some alignment issues if you want it positioned under the column). If the final Total, I'm not sure what option would work. ON TABLE SUBFOOT perhaps.
Leah
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004
Yes, I am trying to us it with Grand Total, but if i go by this only the last value in that column is coming as a total and that too not under that column. Below is my sample code, after trying the option suggested:
DEFINE FILE HOLD RETURN/D16.2 = Value1+Value2; END
TABLE FILE HOLD SUM NM_NAME AS 'Name' NM_SUB AS 'Temp1' NM_SUB1 AS 'Temp2' RETURN/D16.2 AS 'Return' BY NM_CLASS NOPRINT PAGE-BREAK WHERE NM_STATUS EQ 'ACTIVE'; ON TABLE SUBFOOT " " "TOTAL END