- 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 11:55 AM
Hi Andrew,
I would suggest you to try the solution provided to the following thread, you should be able to achieve it:
How can one edit/remove the tabs from a project card, within My Projects Space(WorkBench) ?
Hope this will fit your need!
If I have answered your question, please mark my response as correct so that others with the same question in the future can find it quickly and that it gets removed from the Unanswered list.
Thank you
Cheers
Alberto
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2019 11:58 AM
Thank you Alberto, but that link just re-directed me here: https://hi.service-now.com/hisp

- 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:37 PM
Thank you so much, this worked.