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've searched and cannot find the answer. If I want a page or report footer to be against the report itself without a space, how would I change my styling to achieve this?
I did find: SET DROPBLNKLINE=ON however it doesn't seem to drop it for us with our stylesheet. Not sure why.
Unfortunately, as soon as you start using BORDER definitions in your StyleSheet, WebFOCUS will automatically add a blank line after the HEADING and before FOOOTING and TABLE SUBFOOT, without even giving you an option to choose whether or not that's what you wanted, and SET DROPBLNKLINE does not help much either.
My suggestion would be to fake your FOOTING as a SUBFOOT on a higher level field (e.g. DUMMY in the sample code below)
DEFINE FILE CAR
DUMMY/A1 = ' ';
END
TABLE FILE CAR
PRINT CAR AND MODEL AND SEATS
BY DUMMY NOPRINT
BY COUNTRY
ON DUMMY SUBFOOT
"Dummy Footing"
ON TABLE SET HTMLCSS ON
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET STYLE *
TYPE=REPORT, BORDER=LIGHT, FONT='ARIAL',SIZE=9, $
END
Alternatively, if your report format is HTML, you can move most of your styling into classes in a CSS file and use CLASS=... in your report style to refer to those styles.
For example:
ON TABLE SET HTMLCSS OFF
ON TABLE SET CSSURL '/approot/my_app/my_stylesheet.css'
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='Letter',
LEFTMARGIN=0.000000,
RIGHTMARGIN=0.000000,
TOPMARGIN=0.000000,
BOTTOMMARGIN=0.000000,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
PAGECOLOR=WHITE,
$
TYPE=REPORT,
BORDER=LIGHT,
BORDER-STYLE=SOLID,
FONT='ARIAL',
SIZE=9,
COLOR='BLACK',
BACKCOLOR='NONE',
STYLE=NORMAL,
RIGHTGAP=0.125000,
TOPGAP=0.013889,
BOTTOMGAP=0.00000,
$
TYPE=DATA, CLASS=DATA, BACKCOLOR=(RGB(189 211 222) WHITE ),$
TYPE=TITLE, CLASS=TITLE,$
TYPE=TABHEADING, CLASS=TABHEADING,$
TYPE=TABFOOTING, CLASS=TABFOOTING,$
TYPE=HEADING, CLASS=HEADING,$
TYPE=HEADING, LINE=1, OBJECT=TEXT, ITEM=2, CLASS=HEADING small,$
TYPE=HEADING, LINE=2, OBJECT=TEXT, ITEM=1, CLASS=HEADING small,$
TYPE=HEADING, LINE=3, OBJECT=TEXT, ITEM=1, CLASS=HEADING small,$
TYPE=GRANDTOTAL, CLASS=GRANDTOTAL,$
etc.
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :