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'm trying to bring the borders, for the subfoot lines in HTML report. but the border option is not working for html report.... also need to check for EXL2k reports...
how to get the subfoot borders in HTML and EXL2K FORMATS
TABLE FILE CAR
SUM DEALER_COST NOPRINT RETAIL_COST NOPRINT CNT.CAR NOPRINT
COMPUTE CNTR/I8 = C2/C3; NOPRINT
BY COUNTRY
SUM DEALER_COST RETAIL_COST
BY COUNTRY
BY CAR
ON COUNTRY SUBFOOT
"<+0> <+0> <+0> <+0><CNTR"
"<+0> <+0> <+0><DEALER_COST<+0><RETAIL_COST"
ON TABLE SET HTMLCSS ON
-*ON TABLE PCHOLD FORMAT EXL2K
ON TABLE SET STYLE *
TYPE=REPORT,
HEADALIGN=BODY,
BORDER=LIGHT,
BACKCOLOR=GRAY,
$
TYPE=SUBFOOT,
HEADALIGN=BODY,BORDER=LIGHT,BORDER-TOP-COLOR=BLACK,BORDER-BOTTOM-COLOR=BLACK,
LINE=1,ITEM=4,COLOR=RED,
$
ENDSTYLE
END
This message has been edited. Last edited by: Kerry,
subbu, The following code allows for a border around the SubFoot. You may have to play with the positioning of the subfoot data.
TABLE FILE CAR
SUM
'CAR.BODY.DEALER_COST' NOPRINT
'CAR.BODY.RETAIL_COST' NOPRINT
'CNT.CAR.COMP.CAR' NOPRINT
COMPUTE CNTR/I8 = C2 / C3; NOPRINT
BY 'CAR.ORIGIN.COUNTRY'
SUM
'CAR.BODY.DEALER_COST'
'CAR.BODY.RETAIL_COST'
BY 'CAR.ORIGIN.COUNTRY'
BY 'CAR.COMP.CAR'
ON CAR.ORIGIN.COUNTRY SUBFOOT
"<+0> <+0> <+0> <CNTR"
"<+0> <+0> <DEALER_COST<RETAIL_COST"
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
UNITS=IN,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
FONT='TIMES NEW ROMAN',
SIZE=10,
HEADALIGN=BODY,
$
TYPE=SUBFOOT,
BY=1,
BORDER-TOP=LIGHT,
BORDER-BOTTOM=LIGHT,
BORDER-LEFT=LIGHT,
BORDER-RIGHT=LIGHT,
HEADALIGN=BODY,
JUSTIFY=RIGHT,
$
ENDSTYLE
END
This message has been edited. Last edited by: ERINP,
WebFOCUS 7.6.9
Reporting client Windows 2003 Service pack 2 using IIS and TomCat 5.5 Reporting Server OS/400 V5R4M0 Outputs: HTML, Excel, PDF, CSV, and Flat Files
Thanks for the information, but I need a border between the two subfoot text, here "AVG" and "SubTotal"
TABLE FILE CAR
SUM
'CAR.BODY.DEALER_COST' NOPRINT
'CAR.BODY.RETAIL_COST' NOPRINT
'CNT.CAR.COMP.CAR' NOPRINT
COMPUTE CNTR/I8 = C2 / C3; NOPRINT
BY 'CAR.ORIGIN.COUNTRY'
SUM
'CAR.BODY.DEALER_COST'
'CAR.BODY.RETAIL_COST'
BY 'CAR.ORIGIN.COUNTRY'
BY 'CAR.COMP.CAR'
ON CAR.ORIGIN.COUNTRY SUBFOOT
"<+0> <+0> <+0> <CNTR"
"<+0> <+0> <DEALER_COST<RETAIL_COST"
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
UNITS=IN,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
BORDER=LIGHT,
$
TYPE=REPORT,
FONT='TIMES NEW ROMAN',
SIZE=10,
HEADALIGN=BODY,
$
TYPE=SUBFOOT,
BY=1,
BORDER-TOP=LIGHT,
BORDER-BOTTOM=LIGHT,
BORDER-LEFT=LIGHT,
BORDER-RIGHT=LIGHT,
HEADALIGN=BODY,
JUSTIFY=RIGHT,
$
ENDSTYLE
END
subbu, you cannot have "intra" borders in a SUBHEAD or SUBFOOT. Only surrounding borders are possible with the current style sheet functionality.
If you need to have a border between line 1 and line 2 you may need to fake it using 2 SUBFOOT's.
DEFINE FILE CAR
DUMMY1/A10 = COUNTRY;
END
TABLE FILE CAR
SUM DEALER_COST NOPRINT RETAIL_COST NOPRINT CNT.CAR NOPRINT
COMPUTE CNTR/I8 = C2/C3; NOPRINT
BY DUMMY1 NOPRINT
BY COUNTRY
SUM DEALER_COST RETAIL_COST
BY DUMMY1 NOPRINT
BY COUNTRY
BY CAR
ON DUMMY1 SUBFOOT
"<+0> <+0> <+0><DEALER_COST<+0><RETAIL_COST"
ON COUNTRY SUBFOOT
"<+0> <+0> <+0> <+0><CNTR"
ON TABLE SET HTMLCSS ON
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET STYLE *
TYPE=REPORT,
HEADALIGN=BODY,
BORDER=LIGHT,
BACKCOLOR=GRAY,
$
TYPE=SUBFOOT, BY=COUNTRY,
HEADALIGN=BODY,BORDER=LIGHT,BORDER-TOP-COLOR=BLACK,BORDER-BOTTOM-COLOR=BLACK,
LINE=1,ITEM=4,COLOR=RED,
$
ENDSTYLE
END