- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-25-2019 05:51 AM
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!
Solved! Go to Solution.
- Labels:
-
Project Portfolio Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-25-2019 08:20 AM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-25-2019 08:20 AM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-25-2019 11:19 AM
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-25-2019 11:19 AM
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-24-2019 09:54 AM
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.