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

Great, happy to know!

Cheers
Alberto