Products | Versions |
---|---|
TIBCO Collaborative Information Manager | - |
Not Applicable | - |
Resolution:
The authorization is customizable as explained in the Customization guide under "Customizing Menus" section.
For example, to show that link(Master catalogs) to the user with Catalog Editor role, then it is required to delete an entry from the database table, ROLE2FUNCMAP where the funcid=8 for the enterprise you intend this for.
delete from role2funcmap where roleid=(select id from role where name='Catalog Editor' and enterpriseid=(select id from enterprise where name='<ent-name>')) and funcid=8
In the above SQL please change the <ent-name> with your enterprise name.