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.
We are using Public dashboard with couple graphs and some reports links. I was wondering if any one has every tried to hide or show repots based of user role, group or any other attribute.
I realize that for these sorts of needs group profiles work. But It would be nice if there was a way to grant access, show, or hide contents at user level.This message has been edited. Last edited by: Kerry,
What you could do (and what we are actually doing in our project) is to "put" your html code of the public page (should also be possible with other output formats) into a fex using -HTMLFORM BEGIN ... END. Those elements you might want to hide, you put into ampersand variables like:
]-* Read role block
-* E.G.
TABLE FILE MYROLES
SUM FST.ROLE
WHERE USER EQ &IBIMR_user.QUOTEDSTRING;
ON TABLE HOLD AS TMP FORMAT ALPHA
END
-READ &ROLE.A64
-* create
-SET &MYELEM1=IF &ROLE EQ 'Admin' THEN '<iframe id="report1"...></iframe>" ELSE '';
These elements can then be added (or not) into your shown page
-HTMLFORM BEGIN
<html>
<body>
<!-- the following may be shown / or not depending on users role -->
!IBI.AMP.MYELEM1;
</body>
</html>
-HTMLFORM END
What you could do (and what we are actually doing in our project) is to "put" your html code of the public page (should also be possible with other output formats)
Thank you for the help. I will look into it and post and update here. Regards,