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 a focexec that creates a report that has formatting similar to what the code below produces. How do I get the vertical borders in the column total line, as an extension of the borders in the data lines?
TABLE FILE EMPDATA
SUM
CNT.PIN
SALARY
CNT.PIN
SALARY
CNT.PIN
SALARY
CNT.PIN
SALARY
BY DIV
ON TABLE SET PAGE-NUM OFF
ON TABLE COLUMN-TOTAL AS 'TOTAL'
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,
$
TYPE=DATA,
COLUMN=N1,
FONT='ARIAL',
SIZE=9,
$
TYPE=DATA,
COLUMN=N2,
BORDER-LEFT=LIGHT,
FONT='ARIAL',
SIZE=9,
$
TYPE=DATA,
COLUMN=N3,
BORDER-RIGHT=LIGHT,
FONT='ARIAL',
SIZE=9,
$
TYPE=DATA,
COLUMN=N4,
FONT='ARIAL',
SIZE=9,
$
TYPE=DATA,
COLUMN=N5,
BORDER-RIGHT=LIGHT,
FONT='ARIAL',
SIZE=9,
$
TYPE=DATA,
COLUMN=N6,
FONT='ARIAL',
SIZE=9,
$
TYPE=DATA,
COLUMN=N7,
BORDER-RIGHT=LIGHT,
FONT='ARIAL',
SIZE=9,
$
TYPE=DATA,
COLUMN=N8,
FONT='ARIAL',
SIZE=9,
$
TYPE=DATA,
COLUMN=N9,
BORDER-RIGHT=LIGHT,
FONT='ARIAL',
SIZE=9,
$
TYPE=TITLE,
COLUMN=N1,
FONT='ARIAL',
SIZE=9,
COLOR='NAVY',
STYLE=BOLD,
JUSTIFY=CENTER,
$
TYPE=TITLE,
COLUMN=N2,
BORDER-LEFT=LIGHT,
FONT='ARIAL',
SIZE=9,
COLOR='NAVY',
STYLE=BOLD,
JUSTIFY=CENTER,
$
TYPE=TITLE,
COLUMN=N3,
BORDER-RIGHT=LIGHT,
FONT='ARIAL',
SIZE=9,
COLOR='NAVY',
STYLE=BOLD,
$
TYPE=TITLE,
COLUMN=N4,
FONT='ARIAL',
SIZE=9,
COLOR='NAVY',
STYLE=BOLD,
JUSTIFY=CENTER,
$
TYPE=TITLE,
COLUMN=N5,
BORDER-RIGHT=LIGHT,
FONT='ARIAL',
SIZE=9,
COLOR='NAVY',
STYLE=BOLD,
$
TYPE=TITLE,
COLUMN=N6,
FONT='ARIAL',
SIZE=9,
COLOR='NAVY',
STYLE=BOLD,
JUSTIFY=CENTER,
$
TYPE=TITLE,
COLUMN=N7,
BORDER-RIGHT=LIGHT,
FONT='ARIAL',
SIZE=9,
COLOR='NAVY',
STYLE=BOLD,
$
TYPE=TITLE,
COLUMN=N8,
FONT='ARIAL',
SIZE=9,
COLOR='NAVY',
STYLE=BOLD,
JUSTIFY=CENTER,
$
TYPE=TITLE,
COLUMN=N9,
BORDER-RIGHT=LIGHT,
FONT='ARIAL',
SIZE=9,
COLOR='NAVY',
STYLE=BOLD,
$
ENDSTYLE
END
WF 7.7.03, Windows 7, HTML, Excel, PDF
Posts: 225 | Location: San Francisco Bay Area, California | Registered: October 26, 2006
TABLE FILE CAR
PRINT SALES RCOST DCOST
BY COUNTRY BY BODYTYPE
ON TABLE SET HTMLCSS ON
ON TABLE COLUMN-TOTAL
ON TABLE SET STYLE *
TYPE=REPORT, GRID=OFF, BORDER=LIGHT, $
ENDSTYLE
END
This puts borders everywhere. Maybe you need to explicitly code "grid=off" in your fex.
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
However, I want only vertical borders on the right side of specific columns, and no horizontal or left borders. Getting this on the data lines is the easy part. I need to be able to continue those vertical border lines down into the column total line.
John
WF 7.7.03, Windows 7, HTML, Excel, PDF
Posts: 225 | Location: San Francisco Bay Area, California | Registered: October 26, 2006
TABLE FILE CAR
PRINT SALES RCOST DCOST
BY COUNTRY BY BODYTYPE
ON TABLE SET HTMLCSS ON
ON TABLE COLUMN-TOTAL AS Total
ON TABLE SET STYLE *
TYPE=REPORT, GRID=OFF,$
TYPE=REPORT, BORDER-RIGHT=LIGHT, $
ENDSTYLE
END
Here you will have right borders on all fields and they continue down to the total.
Ex 2:
TABLE FILE CAR
PRINT SALES RCOST DCOST
BY COUNTRY BY BODYTYPE
ON TABLE SET HTMLCSS ON
ON TABLE COLUMN-TOTAL AS Total
ON TABLE SET STYLE *
TYPE=REPORT, GRID=OFF,$
TYPE=REPORT, COLUMN=SALES, BORDER-RIGHT=LIGHT, $
TYPE=REPORT, COLUMN=DCOST, BORDER-RIGHT=LIGHT, $
ENDSTYLE
END
Here you have the border on only the SALES and the DCOST fields, but you will see that there is an interruption before the total line. I suggest you open a case with IBI.
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
Thank you, Daniel! This is exactly what I'm looking for. No problem with the interruption before the total line. I think in some cases it improves the readability of the report.
No, I'm not at Summit. Maybe next year.
Regards,
John
WF 7.7.03, Windows 7, HTML, Excel, PDF
Posts: 225 | Location: San Francisco Bay Area, California | Registered: October 26, 2006