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