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.
I have a report that has page breaks on the subhead and heading due to requiring the titles to appear above the column headings. This is fine when the report is run with a single selection but fails when 'FOC_NONE' is passed such as the case of bursting the report in RC. The requirement is that the resultant reports show as a separate spreadsheets for each country with the report subhead repeated on each spreadsheet. Example code -DEFAULTH &COUNTRY = 'ENGLAND'; TABLE FILE CAR PRINT CAR.CARREC.MODEL CAR.CARREC.MODEL CAR.BODY.BODYTYPE BY LOWEST CAR.ORIGIN.COUNTRY BY LOWEST CAR.COMP.CAR ON CAR.COMP.CAR PAGE-BREAK ON TABLE PAGE-BREAK AND SUBHEAD "This report heading should be repeated for each country and a separate cell for each data field below " "CAR.ORIGIN.COUNTRY " need to preface with a less than sign "CAR.ORIGIN.COUNTRY " "CAR.ORIGIN.COUNTRY " HEADING " " "CAR.COMP.CAR " WHERE CAR.ORIGIN.COUNTRY EQ '&COUNTRY.COUNTRY:.'; ON TABLE SET PAGE-NUM NOLEAD ON TABLE SET BYDISPLAY ON ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT EXL2K ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * INCLUDE = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/endeflt.sty, $ TYPE=TABHEADING, LINE=1, OBJECT=FIELD, ITEM=1, BACKCOLOR=RGB(155 155 155), $ TYPE=HEADING, LINE=1, JUSTIFY=LEFT, $ TYPE=HEADING, LINE=1, OBJECT=TEXT, ITEM=1, BACKCOLOR=RGB(205 205 205), $ TYPE=HEADING, LINE=1, OBJECT=FIELD, ITEM=1, BACKCOLOR='WHITE', $ TYPE=HEADING, LINE=2, JUSTIFY=LEFT, $ TYPE=HEADING, LINE=2, OBJECT=FIELD, ITEM=1, BACKCOLOR=RGB(205 205 205), $ ENDSTYLE ENDThis message has been edited. Last edited by: I.P.,
Not sure why you added page break to ON TABLE line. Your table file syntax should be in below format.
TABLE FILE CAR
PRINT
MODEL
BODYTYPE
BY COUNTRY
BY CAR
ON COUNTRY PAGE-BREAK
ON TABLE SUBHEAD
"HEADING LINE 1"
"HEADING LINE 2"
HEADING
"PAGE HEADING"
END