project_status_report page

JamesAcevedo88
Tera Contributor

Ok so i know there is a project_status_report page but how would i populate that page with the information of an specific project?

6 REPLIES 6

Iraj Shaikh
Mega Sage
Mega Sage

Hi @JamesAcevedo88 

 

You can refer below servicenow documentation for project status report creation
https://docs.servicenow.com/bundle/vancouver-it-business-management/page/product/project-management/...

 

Please mark this response as correct or helpful if it assisted you with your question.

JamesAcevedo88
Tera Contributor

Im talking about the project_status_report page in the portal: project_status_report. The page exist but how would you populate the page with data from an specific project?

Hi @JamesAcevedo88 

I just came across this post, as I've been working on generating a link for status reports which will be available on our portals. 

The project_status_report is basically just a bunch of widgets and the widgets takes the parameters:

  • sysparm_sys_id
  • sysparm_status_date
  • sysparm_report_id

Maybe there are more, I haven't seen any documentation on this, but I checked the widgets.
You can generate a link to a report by parsing in the "sys_id" for "sysparm_sys_id" for the project and this will give you the most recent reports (as I understand). If you want a specific report, you can take the status report date and parse it into the "sysparm_status_date".

So:

https://<instance>.service-now.com/<portal>?id=project_status_report&sysparm_sys_id=<project sys_id>&sysparm_status_date=<status report date>

or just:

https://<instance>.service-now.com/<portal>?id=project_status_report&sysparm_sys_id=<project sys_id>


I havent used the sysparm_report_id, but I think that in the script include used in the widgets there's some functionality to lookup report if the project id cannot be found.

 

Hope you make it work! 🙂

/Jesper 

Hello Jesper I need help setting this up. How would I link a project list to the project status report page. For example I have a simple list with project and when I click on any of them I would get to the project detail with the needed information