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 request like this. TABLE FILE CAR SUM DEALER_COST BY SEATS ACROSS COUNTRY ACROSS MODEL ON TABLE PCHOLD FORMAT EXL2K END I want the borders on dealer cost data when the country changes. For example, I want to have a right border between England and Japan. I tried many ways with the style sheet attributes but no use. Border does not display at all. Please advice. Thank you.This message has been edited. Last edited by: ReddyP,
SET PAGE = OFF
TABLE FILE CAR
SUM DEALER_COST
BY SEATS
ACROSS COUNTRY ACROSS MODEL
ON TABLE PCHOLD FORMAT EXL2K
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
GRID=OFF, BORDER=LIGHT, BORDER-COLOR=GREEN, BORDER-STYLE=DASHED, FONT=COURIER, SIZE=9, COLOR=BLUE, SQUEEZE=ON, ORIENTATION=LANDSCAPE,$
TYPE=HEADING, HEADALIGN=BODY, COLSPAN=8, STYLE=BOLD,$
TYPE=TITLE, STYLE=BOLD,$
ENDSTYLE
END
... and let me know your thoughts... (freebie)This message has been edited. Last edited by: Doug,
In FOCUS Since 1983 ~ from FOCUS to WebFOCUS. Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
As per our IB Technical Staff they provided the following:
You can get the count of rows for each country and then use the count as the column number in the style section to have border-right.
This is not all the code needed but its a start
TABLE FILE CAR COUNT * BY COUNTRY ON TABLE HOLD AS COLNUM END
-READ the colnum and use the values to parameterize the styling
-EXIT
Will give you the following: PAGE 1
COUNTRY COUNT * COUNT ENGLAND 4 FRANCE 1 ITALY 4 JAPAN 2 W GERMANY 7
Then you would have to read each row and create &erVariables to create the inline style section.
-*The following will create the report that they want BUT .. look at the style section TABLE FILE CAR SUM
CAR.BODY.DEALER_COST BY CAR.BODY.SEATS ACROSS CAR.ORIGIN.COUNTRY ACROSS CAR.CARREC.MODEL ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT EXL2K ON TABLE SET STYLE * $
$ The code below would have to be parameterized for the column number using the count above.