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.
Please see following code. I have created a report with standard headings that should have light blue borders around the column headings. On page 1 there are no lower borders at all. Then on pages 2 - 6 the only lower border is on the REGION heading but skips a line before displaying it. How can I have the borders on all column headings and without skipping lines?
-* File carsales.fex SET LINES = 66 TABLE FILE GGSALES SUM UNITS BY REGION BY ST BY CITY BY PRODUCT ON REGION SUBTOTAL AS '*TOTAL REGION' ON ST SUBTOTAL AS '*TOTAL' ON CITY SUBTOTAL AS '*TOTAL CITY' ON PRODUCT SUBFOOT WITHIN " " HEADING "Page ON TABLE SET PAGE-NUM OFF ON TABLE SUMMARIZE GGSALES.SALES01.UNITS AS 'TOTAL' ON TABLE PCHOLD FORMAT PDF ON TABLE SET STYLE * INCLUDE = PROBLUE, $ UNITS=IN, PAGESIZE='Letter', LEFTMARGIN=0.250000, RIGHTMARGIN=0.250000, TOPMARGIN=0.250000, BOTTOMMARGIN=0.250000, SQUEEZE=ON, ORIENTATION=PORTRAIT, $ DEFMACRO=COND0001, MACTYPE=RULE, WHEN=N2 EQ 'IL', $ DEFMACRO=COND0002, MACTYPE=RULE, WHEN=N2 EQ 'MO', $ TYPE=REPORT, BORDER-TOP-STYLE=RIDGE, BORDER-BOTTOM-STYLE=RIDGE, BORDER-LEFT-STYLE=RIDGE, BORDER-RIGHT-STYLE=RIDGE, BORDER-TOP-COLOR=RGB(51 51 153), BORDER-BOTTOM-COLOR=RGB(51 51 153), BORDER-LEFT-COLOR=RGB(51 51 153), BORDER-RIGHT-COLOR=RGB(51 51 153), FONT='TIMES NEW ROMAN', SIZE=10, RIGHTGAP=0.125000, $ TYPE=DATA, COLUMN=N1, FONT='TIMES NEW ROMAN', SIZE=8, STYLE=NORMAL, $ TYPE=DATA, COLUMN=N2, FONT='TIMES NEW ROMAN', SIZE=8, STYLE=NORMAL, $ TYPE=DATA, COLUMN=N3, FONT='TIMES NEW ROMAN', SIZE=8, STYLE=NORMAL, $ TYPE=DATA, COLUMN=N4, FONT='TIMES NEW ROMAN', SIZE=8, STYLE=NORMAL, $ TYPE=DATA, COLUMN=N5, FONT='TIMES NEW ROMAN', SIZE=8, STYLE=NORMAL, $ TYPE=TITLE, BORDER-TOP=LIGHT, BORDER-BOTTOM=LIGHT, BORDER-LEFT=LIGHT, BORDER-RIGHT=LIGHT, BORDER-TOP-STYLE=RIDGE, BORDER-BOTTOM-STYLE=RIDGE, BORDER-LEFT-STYLE=RIDGE, BORDER-RIGHT-STYLE=RIDGE, BORDER-TOP-COLOR=RGB(51 51 153), BORDER-BOTTOM-COLOR=RGB(51 51 153), BORDER-LEFT-COLOR=RGB(51 51 153), BORDER-RIGHT-COLOR=RGB(51 51 153), $ TYPE=TITLE, COLUMN=N1, FONT='TIMES NEW ROMAN', SIZE=8, STYLE=NORMAL, $ TYPE=TITLE, COLUMN=N2, FONT='TIMES NEW ROMAN', SIZE=8, STYLE=NORMAL, $ TYPE=TITLE, COLUMN=N3, FONT='TIMES NEW ROMAN', SIZE=8, STYLE=NORMAL, $ TYPE=TITLE, COLUMN=N4, FONT='TIMES NEW ROMAN', SIZE=8, STYLE=NORMAL, $ TYPE=TITLE, COLUMN=N5, FONT='TIMES NEW ROMAN', SIZE=8, STYLE=NORMAL, $ TYPE=FOOTING, BORDER-TOP=LIGHT, BORDER-BOTTOM=LIGHT, BORDER-LEFT=LIGHT, BORDER-RIGHT=LIGHT, BORDER-TOP-STYLE=RIDGE, BORDER-BOTTOM-STYLE=RIDGE, BORDER-LEFT-STYLE=RIDGE, BORDER-RIGHT-STYLE=RIDGE, BORDER-TOP-COLOR=RGB(51 51 153), BORDER-BOTTOM-COLOR=RGB(51 51 153), BORDER-LEFT-COLOR=RGB(51 51 153), BORDER-RIGHT-COLOR=RGB(51 51 153), $ TYPE=SUBFOOT, BORDER-TOP=LIGHT, BORDER-BOTTOM=LIGHT, BORDER-LEFT=LIGHT, BORDER-RIGHT=LIGHT, BORDER-TOP-STYLE=RIDGE, BORDER-BOTTOM-STYLE=RIDGE, BORDER-LEFT-STYLE=RIDGE, BORDER-RIGHT-STYLE=RIDGE, BORDER-TOP-COLOR=RGB(51 51 153), BORDER-BOTTOM-COLOR=RGB(51 51 153), BORDER-LEFT-COLOR=RGB(51 51 153), BORDER-RIGHT-COLOR=RGB(51 51 153), $ TYPE=SUBFOOT, BY=4, BORDER-TOP=OFF, BORDER-BOTTOM=OFF, BORDER-LEFT=OFF, BORDER-RIGHT=OFF, BACKCOLOR='NONE', $ TYPE=SUBTOTAL, BY=1, BACKCOLOR=RGB(210 210 210), $ TYPE=SUBTOTAL, BY=2, BACKCOLOR=RGB(210 210 210), $ TYPE=SUBTOTAL, BY=2, BACKCOLOR=RGB(255 252 204), MACRO=COND0001, $ TYPE=SUBTOTAL, BY=2, BACKCOLOR=RGB(255 128 255), MACRO=COND0002, $ TYPE=GRANDTOTAL, BACKCOLOR=RGB(255 252 204), $ ENDSTYLE ENDThis message has been edited. Last edited by: Kerry,
WebFOCUS developer studio version 7.6.11 Windows all formats
The multiple entries in the style-sheet for TITLE is causing the problem.
1) INCLUDE = PROBLUE, is new to me and I don't know if it's a good idea. This uses the PROBLUE style-sheet found somewhere in the App Path, then any other style declarations override the styling that's in the included style-sheet. I have found that it is very easy with the Dev Studio GUI to generate what I believe to be a mess - an included style-sheet AND all the styling also copied into the fex.
2) The best way to debug this problem is to start by commenting all the styling, then add pieces at a time. I did this and found that
TYPE=TITLE,
COLUMN=N1,
FONT='TIMES NEW ROMAN',
SIZE=8,
STYLE=NORMAL,
$
Thank you!! I did what you suggested and it worked beautifully. Now I'll try this on my production reports and will (hopefully) get the same results. Thanks for your insight.
WebFOCUS developer studio version 7.6.11 Windows all formats