How to remove the project_time_category column from the Time Sheet PortalIssue How to remove the project_time_category column from the Time Sheet PortalResolutionIn order to perform this, at least with the OOB code, you will need to remove the reference to project_time_category in 2 locations.One in the "Time Card Grid" Server Script and one in the sp_instance record for "Time Card Portal Container" and it's Additional JSON Options.Please note that this is a customization not supported ServiceNow Support and the full effects of this change are not known. If you have further questions about this topic, we recommend asking on our Community Forums where other ServiceNow developers are able to assist.That being said, to remove, follow the steps below.NEXT STEPS:1. Navigate to "sp_instance.LIST"2. In the Title column search for "Time Card Portal Container" and go to the record3. In the "Additional Options, JSON Format" field remove the following code (including the preceding comma on the line above):,{name:"project_time_category}4. Save the record5. Now navigate to Service Portal > Widgets6. In the Name column search for "Time Card Grid and go to the record7. In the Server Script, change the following line:var defaultHeaderFields = ['task.short_description', 'project_time_category'];To:var defaultHeaderFields = ['task.short_description'];8. Save the record