Is it Possible to modify the Project Status report Content?

Svetoslav Iliev
Mega Contributor

Hello,

I`d like to add/modify fields on a Project Status Report. Whenever I`m adding a field to the Create form, then on Save there are no changes in the outcome. Thanks!

1 ACCEPTED SOLUTION

Oleg
Mega Sage

It's important to unterstand, that the information displayed on Project Status Report come from Service Portal page "Project Status Report" (id="project_status_report"). You can open the URL

https://<instance_name>.service-now.com/sp?id=project_status_report&sysparm_report_id=<sys_id_of_project_status>

where <sys_id_of_project_status> is sys_id of any status report from "Status Report" [project_status] table.

If you know how to customize/develop Service Portal pages then you need to clone widgets responsible for the information, which you need to modify (Project Status Header, Project Information, Project Status Comments, ...) used on the Service Portal page "Project Status Report" (id="project_status_report"), and to modify the instance of the page to use the modified (cloned widget).

In general it's all if you don't provides details of customization, which you need. Because many from the widgets use Script Includes (mostly PmProjectStatusReport), then you could need to modify the script include or to make copy of the script include and to use the copy in you cloned widget.

View solution in original post

5 REPLIES 5

Oleg
Mega Sage

It's important to unterstand, that the information displayed on Project Status Report come from Service Portal page "Project Status Report" (id="project_status_report"). You can open the URL

https://<instance_name>.service-now.com/sp?id=project_status_report&sysparm_report_id=<sys_id_of_project_status>

where <sys_id_of_project_status> is sys_id of any status report from "Status Report" [project_status] table.

If you know how to customize/develop Service Portal pages then you need to clone widgets responsible for the information, which you need to modify (Project Status Header, Project Information, Project Status Comments, ...) used on the Service Portal page "Project Status Report" (id="project_status_report"), and to modify the instance of the page to use the modified (cloned widget).

In general it's all if you don't provides details of customization, which you need. Because many from the widgets use Script Includes (mostly PmProjectStatusReport), then you could need to modify the script include or to make copy of the script include and to use the copy in you cloned widget.

Thank you!

Svetoslav Iliev
Mega Contributor

Thank you!

Piotr Ba_amut1
Mega Contributor

HI, I've added my custom field to the report's section, but the value is not displayed. 

<td>
               <div class="label-column">
                 <h5>${KPI}</h5>
               </div>
               <div class="value-column bold">
                 {{data.u_kpi}}
               </div>
             </td>

I've also noticed that some ootb fields' values are not displayed as well. 

Is there sth else to be customized ? Thx in advance.