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.
Having trouble styling (or removing) a particular component in an active report. The area in question is in an across under the ACROSSVALUE where the TITLE element would be for a normal column. Strange thing is these row titles don't show up at all in other formats, like HTML, PDF, Excel, etc.
Broken Active report:
Working Excel:
Working HTML:
Working PDF:
Any ideas on which TYPE and OBJECT I would need to use to reference this element, or how to make it go away altogether?This message has been edited. Last edited by: Kerry,
WF Server: 7.6.10 on Linux, ReportCaster, MRE, Flex Data: Oracle Output: HTML,PDF,EXL2K, AHTML, Flex WF Client: 7.6.10 on Windows XP
Oh come on Doug, you should be able to determine the basic code from that -
TABLE FILE CAR
SUM DCOST
BY CAR
BY COUNTRY
BY MODEL
ACROSS COUNTRY SUBTOTAL MULTILINES
ACROSS SEATS
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET PAGE NOLEAD
ON TABLE ROW-TOTAL
END
Of course someone has just woken you up
TThis message has been edited. Last edited by: Tony A,
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
I just played around with this to what was going on. For Active Reports with ACROSS, you get the name of the field repeated on the same line as the titles for the BY fields. If you use AS '' to remove the 'title' for the across, you get the COLUMN1, COLUMN2, etc. I think that is generated because of the control that gets generated for each column to allow you to operate on that column, i.e. sort, hide, graph, etc.
The only way I can think to remove that is to do the ACROSS into a HOLD file then do the active report on the hold file.
Here is a simplified version of the code that gets the same results:
TABLE FILE CAR SUM 'CAR.BODY.SALES' AS '' BY 'CAR.COMP.CAR' BY 'CAR.ORIGIN.COUNTRY' BY 'CAR.CARREC.MODEL' ACROSS 'CAR.ORIGIN.COUNTRY' ACROSS 'CAR.BODY.SEATS'
In the Report Painter GUI, if I select the data column in the SUM (SALES) and choose to style the Title, it looks correct on the sample report on the painter page, and generates the following code: