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 created an HTML report using OVER. I am needing to have the alternating background color appear also on the second line where the BY fields are. See example below......I would like to see the green or yellow color on BOTH lines of Region and State instead of the white color. Any ideas on how to do this?
-* File backgroundcolor.fex
TABLE FILE GGSALES
PRINT
'GGSALES.SALES01.CITY' AS '' OVER
'GGSALES.SALES01.CATEGORY' AS ''
'GGSALES.SALES01.PRODUCT' AS ''
BY 'GGSALES.SALES01.REGION'
BY 'GGSALES.SALES01.ST'
HEADING
""
FOOTING
""
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = GREENBAR,
$
UNITS=IN,
PAGESIZE='Letter',
LEFTMARGIN=0.500000,
RIGHTMARGIN=0.500000,
TOPMARGIN=0.500000,
BOTTOMMARGIN=0.500000,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
GRID=OFF,
FONT='TIMES NEW ROMAN',
SIZE=10,
RIGHTGAP=0.125000,
TOPGAP=0.013889,
BOTTOMGAP=0.027778,
$
ENDSTYLE
END
This message has been edited. Last edited by: Kerry,
WebFOCUS developer studio version 7.6.11 Windows all formats
I think posting greenbar would be very helpful, as we do not know what is in it.
Here is my gestimate.
TABLE FILE GGSALES
PRINT
'GGSALES.SALES01.CITY' AS '' OVER
'GGSALES.SALES01.CATEGORY' AS ''
'GGSALES.SALES01.PRODUCT' AS ''
BY 'GGSALES.SALES01.REGION'
BY 'GGSALES.SALES01.ST'
HEADING
""
FOOTING
""
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='Letter',
LEFTMARGIN=0.500000,
RIGHTMARGIN=0.500000,
TOPMARGIN=0.500000,
BOTTOMMARGIN=0.500000,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,$
TYPE=REPORT,
GRID=OFF,
FONT='TIMES NEW ROMAN',
SIZE=10,
RIGHTGAP=0.125000,
TOPGAP=0.013889,
BOTTOMGAP=0.027778,$
TYPE=DATA, COLUMN=P1, BACKCOLOR=(yellow silver), $
TYPE=DATA, COLUMN=P2, BACKCOLOR=(yellow silver), $
ENDSTYLE
END
Is this doing what you want or is it what you are currently getting ?
It's not actually possible to do the styling required by Mark.
The output genertated when using OVER uses empty TD tags to space the columns and as such cannot be styled. (if using DHTML then it uses absolute positioning with the tags for cells completely missing)