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 OVER report in HTML and PDF and, thus, must use a SUBHEAD instead of column headings. Is there a way to put in column separators in my subhead so that the look is consistent with my other reports that do not use OVER and have column titles (and therefore have column separators between the column headings) ?This message has been edited. Last edited by: Kerry,
WebFOCUS developer studio version 7.6.11 Windows all formats
TABLE FILE CAR
SUM RCOST AS '' SEATS AS ''
OVER DCOST AS '' ACCEL AS ''
BY COUNTRY AS ''
BY CAR AS ''
BY MODEL AS ''
ON TABLE SUBHEAD
"Country<+0>Car<+0>Model<+0>Col1<+0>Col 2"
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET PAGE NOLEAD
ON TABLE SET STYLE *
TYPE=REPORT, HEADALIGN=BODY, $
ENDSTYLE
END
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
Rember to make any vertically aligned columns the same format
TABLE FILE CAR
SUM RCOST AS ''
SEATS/D6 AS ''
OVER DCOST AS ''
ACCEL AS ''
BY COUNTRY AS ''
BY CAR AS ''
BY MODEL AS ''
ON TABLE SUBHEAD
"Country<+0>Car<+0>Model<+0>Value<+0>Measure"
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET PAGE NOLEAD
ON TABLE SET STYLE *
ORIENTATION=LANDSCAPE,$
TYPE=REPORT, HEADALIGN=BODY,$
TYPE=TABHEADING, LINE=1, ITEM=1,POSITION=N1,$
TYPE=TABHEADING, LINE=1, ITEM=2,POSITION=N2,$
TYPE=TABHEADING, LINE=1, ITEM=3,POSITION=N3,$
TYPE=TABHEADING, LINE=1, ITEM=4,POSITION=N4,$
TYPE=TABHEADING, LINE=1, ITEM=5,POSITION=N5,$
ENDSTYLE
END
-RUN
I probably wasn't clear on my request. I am able to get the column headings to line up with my data columns in the subhead by using spotmarkers. However, I cannot get the dark (vertical) lines that appear when using a style sheet to separate the column headings. These appear normally when using column headings but don't appear when using subhead. Is there any way to have the dark (vertical) lines appear within a subhead to separate the column headings?
WebFOCUS developer studio version 7.6.11 Windows all formats
As far as I know, SUBHEAD and SUBFOOT only support outer borders (not inner vertical borders as you want). It *may* be possible to accomplish what you need by using external CSS classes but this would only work in HTML.
sorry about that....I don't mean to tick everybody off....
Here is some code. The vertical column separators are missing in the subhead. Also, don't know how or why the underlines are showing up in the last two columns of data...any ideas on how to get rid of those??