Remove "Financials" tab in the Project Workbench

Andrew Bishop1
Tera Contributor

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.

1 ACCEPTED SOLUTION

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"});

});

View solution in original post

5 REPLIES 5

Alberto Consonn
ServiceNow Employee
ServiceNow Employee

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

Thank you Alberto, but that link just re-directed me here: https://hi.service-now.com/hisp

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"});

});

Thank you so much, this worked.