- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2019 11:53 AM
I am new to ServiceNow and the Community. I am noticing a "Financials" tab on the Project Workbench dashboard. Can someone help me/guide me through removing that? I was asked by management to do so.
Solved! Go to Solution.
- Labels:
-
Dashboard

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2019 12:05 PM
I will post below the solution proposed and accepted:
After a lot of research we finally were able to figure this out, as its not an OOB modification.
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
01-23-2019 12:41 PM
Great, happy to know!
Cheers
Alberto