- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2021 09:25 AM
I have a dashboard created, it contains several reports(over 10), interactive filters. It contains also reports that act as filter. I would like to publish it in the service portal, I have found an oob widget for reports (in the designer), but not an oob widget for dashboard. Does anyone know how to achieve what I need?
Solved! Go to Solution.
- Labels:
-
Service Portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2021 09:40 AM
Hi
the better approach would to design a portal page and place the already figured out report widgets there.
But if you insist on pulling the complete dashboard, then use the following workaround:
- Open the dashboard you want to display in the platform UI
- Open dashboard menu in top left and choose "Copy Dashboard URL"
- Add an HTML widget to your Service Portal page
- Hover over the widget instance and click the "Edit" icon
- Switch to source code view
- Add code:
<iframe style="overflow: hidden; height: 1000px; width: 100%;" src="URLFromStep2Here" width="100%" height="100%" frameborder="0"></iframe>
Make sure you use a relative URL in the iframe src attribute, so:
"/$pa_dashboard.do?sysparm_dashboard=<SYS ID OF DASHBOARD>"
Kind regards
Maik
If my answer replied your question please mark appropriate response as correct so that the question will appear as resolved for other users who may have a similar question in the future.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2021 09:40 AM
Hi
the better approach would to design a portal page and place the already figured out report widgets there.
But if you insist on pulling the complete dashboard, then use the following workaround:
- Open the dashboard you want to display in the platform UI
- Open dashboard menu in top left and choose "Copy Dashboard URL"
- Add an HTML widget to your Service Portal page
- Hover over the widget instance and click the "Edit" icon
- Switch to source code view
- Add code:
<iframe style="overflow: hidden; height: 1000px; width: 100%;" src="URLFromStep2Here" width="100%" height="100%" frameborder="0"></iframe>
Make sure you use a relative URL in the iframe src attribute, so:
"/$pa_dashboard.do?sysparm_dashboard=<SYS ID OF DASHBOARD>"
Kind regards
Maik
If my answer replied your question please mark appropriate response as correct so that the question will appear as resolved for other users who may have a similar question in the future.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2021 04:31 PM
Hi ASB
My YouTube video-https://www.youtube.com/watch?v=w7tYLnF-Jnk&t=2s has introduced multiple approach for Dashboard configuring to Service Portal.
Let me know if you have any questions.
If my reply is Helpful/Correct, please mark the answer as correct.