How to deactivate project workspace tabs (resources, financials)?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2019 09:30 AM
How can I deactivate a tab in the Project Workspace? For example we are not using ServiceNow Financial or Resources Management, so we want to hide that tabs.
For tab "resources" it seems to be easily possible by removing the resource_user role from it_project_manager and it_demand_manager, but can't find a way to hide the financials tab.
- Labels:
-
Project Portfolio Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2019 11:30 AM
There's a UI Macro named "pmview_menu" that may be what you're looking for.
Be cautious with making changes to out of box configurations. It may lead to issues during upgrades.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2019 08:56 AM
Hey,
You can follow the below link for the solution.
https://community.servicenow.com/community?id=community_question&sys_id=51d59e1ddbed2b0011762183ca961906
This could be completed by modifying the UI Page “$pmview”and adding the below script to the Client Script.
addLoadEvent(function(){
$j('*[data-view="resources"]').find("a").css({"display": "none"});
$j('*[data-view="financials"]').find("a").css({"display": "none"});
});
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2022 10:56 PM
Hi Shreya,
Need help .!
We have installed the new project workspace plugin sn_pw. in that my client requirement is need to hide the Resource option from the Classic Planning console. as show in the below attached image.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2019 11:44 AM
Hi there
Thank you for the above! Any way we can reorder the tabs?
Example having Status Report showing first
Thank you 🙂