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.
Interesting little issue here and I'm not sure why it's happening (or what I've done to make it happen).
I have a small report and I need to set one of my columns up so that it is a drilldown. Onto the code:
TABLE FILE FINAL
PRINT
PROJECT_TITLE AS 'Project,'
CONTRACT_PERCENT AS 'Percent,'
CONTRACT_SPLIT AS 'Amount,'
BY PR_NUMBER NOPRINT
BY PROJECT_TITLE NOPRINT
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
type=report, font='arial', $
type=report, grid=off, $ -* suppress HTML table styling
type=heading, line=1, size=9, $
type=heading, line=2, size=9, $
type=heading, line=3, size=13, justify=center, style=+bold, $
type=heading, line=4, size=12, justify=center, style=+bold, $
type=heading, line=5, size=11, justify=center, $
type=title, style=+bold, size=12, color=black, $ -* can't hide underline here
-*type=data, column=PROJECT_TITLE, FOCEXEC=SSS (COUNTRY=COUNTRY), $
TYPE=DATA, COLUMN=PROJECT_TITLE, FOCEXEC=SSS (COUNTRY=COUNTRY), $
END
ON TABLE HOLD FORMAT HTMTABLE AS PASSTBL
-RUN
-EXIT
As you can see, I want the drilldown on PROJECT_TITLE. The odd thing is that the link won't show for that column. If I change the syntax in the stylesheet to contract_percent or contract_split, the drilldown link shows (I realize I'm trying to call the sss report). But if I switch it back, it's gone.
So, any ideas? Oh, and this is an HTML report.This message has been edited. Last edited by: BDAVIS,