The material provided is for informational purposes only, and should not be relied on in making any purchasing or investment decision. The information is not a commitment, promise or legal obligation to deliver any material, code, or functionality. The development, release, and timing of any features or functionality described for our products remains at our sole discretion. © 2026 Cloud Software Group LLC. All rights reserved. This page and your use is governed by these
Terms of Use.
Hello,
Thanks for all the feedback. I have adapted the code from Christian using the Oracle function SYS_CONNECT_BY_PATH. The li.item_type may be different from the one you have in your installation.
I can create a cross table report... and it works as expected. I will have a look at the show-library-permissions command, but at first sight, this was not suitable, as the report should have been used in the Web Player, for our ServiceDesk that does not have access to the library, but still would need to determine which Active Directory groups are required for the library access.
But still... If TIBCO can implement such report in native... :)
Thank you.
There is a command in the command line configuration tool called show-library-permissions that should do what you're asking for (it was added in 6.0).
Thanks Christian. This query gets some data indeed. Using cross table, it can be readable… The problem is that we have many folders having the same name and it becomes impossible to know which parent folders (completed tree) it refers to. The item_id should match with the item_id of the parent folder, making things complicated. I can use this query as a base for some other reporting that may work, and try to add only the folder type, as the query returns over 3,8 M rows and this will be an issue if the reports needs to be exported to MS Excel. ☺ The idea of the tool I was suggesting was the kind of.
X RX RWX
Root / Folder 1 Group 1 / Group 2
Root / Folder 1 / Folder 2 Group 1
You can run such a script in the Spotfire DB:
selectlpad(' ', (level- 1) * 4) || li.TITLEaslib_item,la.PERMISSION,(casela.group_idwhennullthennullelseg.group_nameend)assp_group,(casela.user_idwhennullthennullelseu.user_nameend)assp_user,levelfromlib_items lileftjoin(selectitem_id, user_id, group_id, listagg(permission,', ') withingroup(orderbyitem_id)aspermissionfromlib_accessgroupbyitem_id, user_id, group_id) laonli.ITEM_ID = la.ITEM_IDleftjoinusers uonla.USER_ID = u.USER_IDleftjoingroups gonla.GROUP_ID = g.GROUP_IDconnectbypriorli.ITEM_ID = li.parent_idstartwithli.parent_idisnull;