<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question what role is required to admin dashboard and reports without granding the Admin role in Community Central forum</title>
    <link>https://www.servicenow.com/community/community-central-forum/what-role-is-required-to-admin-dashboard-and-reports-without/m-p/3523161#M6633</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;we have dashboard ( inherited - different owner), what are the minimum role required to manage the dashboard and the associated widgets in the dashboard ( reports, KPIs etc) ?&lt;/P&gt;&lt;P&gt;Is it possible to change the ownership of the dashboard?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 10 Apr 2026 13:55:22 GMT</pubDate>
    <dc:creator>MThomas1</dc:creator>
    <dc:date>2026-04-10T13:55:22Z</dc:date>
    <item>
      <title>what role is required to admin dashboard and reports without granding the Admin role</title>
      <link>https://www.servicenow.com/community/community-central-forum/what-role-is-required-to-admin-dashboard-and-reports-without/m-p/3523161#M6633</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;we have dashboard ( inherited - different owner), what are the minimum role required to manage the dashboard and the associated widgets in the dashboard ( reports, KPIs etc) ?&lt;/P&gt;&lt;P&gt;Is it possible to change the ownership of the dashboard?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2026 13:55:22 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/what-role-is-required-to-admin-dashboard-and-reports-without/m-p/3523161#M6633</guid>
      <dc:creator>MThomas1</dc:creator>
      <dc:date>2026-04-10T13:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: what role is required to admin dashboard and reports without granding the Admin role</title>
      <link>https://www.servicenow.com/community/community-central-forum/what-role-is-required-to-admin-dashboard-and-reports-without/m-p/3523197#M6638</link>
      <description>&lt;P&gt;To manage a dashboard you don't own (inherited/shared), the key roles are:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;CODE&gt;pa_admin&lt;/CODE&gt;&lt;/STRONG&gt; — This is the most relevant role. It grants full control over Performance Analytics dashboards, including editing, adding/removing widgets (reports, KPIs, indicators), and modifying layout regardless of ownership.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;CODE&gt;admin&lt;/CODE&gt;&lt;/STRONG&gt; — Obviously has full control, but is overkill for just dashboard management.&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;CODE&gt;pa_power_user&lt;/CODE&gt;&lt;/STRONG&gt; — Can create and edit their &lt;EM&gt;own&lt;/EM&gt; dashboards and widgets, but cannot modify dashboards owned by others unless explicitly shared with edit access.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;For the &lt;EM&gt;widgets themselves&lt;/EM&gt; (reports, KPIs, indicators, breakdowns):&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;CODE&gt;pa_admin&lt;/CODE&gt;&lt;/STRONG&gt; can manage all PA content (indicators, breakdowns, KPIs, widgets).&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;&lt;CODE&gt;report_admin&lt;/CODE&gt;&lt;/STRONG&gt; is needed if the dashboard contains standard reports (not PA-based). This role lets you edit any report regardless of owner.&lt;/LI&gt;
&lt;LI&gt;If widgets reference specific module data (e.g., &lt;CODE&gt;sn_risk_risk&lt;/CODE&gt;, GRC profiles), the user also needs the appropriate &lt;STRONG&gt;domain/module roles&lt;/STRONG&gt; (like &lt;CODE&gt;sn_grc.manager&lt;/CODE&gt;) to see and interact with that data.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Changing Dashboard Ownership&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Yes, it's possible. There are a couple of approaches:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Direct record update&lt;/STRONG&gt; — Navigate to &lt;CODE&gt;pa_dashboards.list&lt;/CODE&gt;, find the dashboard record, and update the &lt;STRONG&gt;User&lt;/STRONG&gt; field to the new owner. You'll need &lt;CODE&gt;pa_admin&lt;/CODE&gt; or &lt;CODE&gt;admin&lt;/CODE&gt; to do this.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;"Clone" approach&lt;/STRONG&gt; — If you don't have admin access, the new intended owner can create a copy of the dashboard (using the "Copy Dashboard" option if available), which makes them the owner of the clone. The original can then be retired.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Via script&lt;/STRONG&gt; — A quick background script or fix script if you need to bulk-reassign:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class="language-javascript"&gt;var gr = new GlideRecord('pa_dashboards');
gr.addQuery('sys_id', '&amp;lt;dashboard_sys_id&amp;gt;');
gr.query();
if (gr.next()) {
    gr.setValue('user', '&amp;lt;new_owner_sys_id&amp;gt;');
    gr.update();
}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;One thing to watch out for: changing ownership doesn't automatically transfer ownership of the &lt;EM&gt;individual widgets/reports&lt;/EM&gt; embedded in the dashboard. Those are separate records with their own owners. If the new dashboard owner needs to edit those too, you'd need to either update ownership on each widget/report or ensure the new owner has &lt;CODE&gt;pa_admin&lt;/CODE&gt; or &lt;CODE&gt;report_admin&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2026 14:46:41 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/what-role-is-required-to-admin-dashboard-and-reports-without/m-p/3523197#M6638</guid>
      <dc:creator>Naveen20</dc:creator>
      <dc:date>2026-04-10T14:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: what role is required to admin dashboard and reports without granding the Admin role</title>
      <link>https://www.servicenow.com/community/community-central-forum/what-role-is-required-to-admin-dashboard-and-reports-without/m-p/3523201#M6640</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/349783"&gt;@MThomas1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To manage a ServiceNow dashboard that you inherited or don’t own, you need at least the&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;pa_admin&lt;/STRONG&gt; role for Performance Analytics dashboards&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;the &lt;STRONG&gt;dashboard_admin&lt;/STRONG&gt; role for Core UI dashboards.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These roles allow you to edit the dashboard and add or remove widgets.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dashboard ownership can also be reassigned by users with the &lt;STRONG&gt;dashboard_admin&lt;/STRONG&gt; or &lt;STRONG&gt;admin&lt;/STRONG&gt; roles, or by using a &lt;STRONG&gt;background script&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: &lt;STRONG&gt;report_admin&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;is required to edit the underlying reports if not explicitly shared with editing rights.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;All Roles:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;H3&gt;&lt;SPAN&gt;&lt;STRONG&gt;Dashboard roles:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;pa_dashboard_admin&lt;/STRONG&gt;→ Provides complete control over dashboards, including creating, editing, deleting, and sharing&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;&lt;STRONG&gt;pa_dashboards_editor&lt;/STRONG&gt;(often the minimum required)&lt;/EM&gt;→ Allows editing dashboards and modifying widgets&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;&lt;SPAN&gt;&lt;STRONG&gt;Reporting and widget roles&lt;/STRONG&gt; &lt;EM&gt;(based on widget type)&lt;/EM&gt;&lt;/SPAN&gt;&lt;/H3&gt;&lt;H4&gt;&lt;SPAN&gt;&lt;STRONG&gt;For Reports&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/H4&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;report_admin&lt;/STRONG&gt;→ Grants full control over report creation and modification&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;report_user&lt;/STRONG&gt;→ Allows basic interaction and limited editing of reports&lt;/LI&gt;&lt;/UL&gt;&lt;H4&gt;&lt;SPAN&gt;&lt;STRONG&gt;For Performance Analytics (KPIs, widgets)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/H4&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;pa_admin&lt;/STRONG&gt;→ Offers full access to manage KPIs, indicators, and analytics widgets&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;pa_power_user&lt;/STRONG&gt;→ for configuring and editing PA widgets, typically sufficient for most use cases&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 10 Apr 2026 14:58:13 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/what-role-is-required-to-admin-dashboard-and-reports-without/m-p/3523201#M6640</guid>
      <dc:creator>Tanushree Maiti</dc:creator>
      <dc:date>2026-04-10T14:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: what role is required to admin dashboard and reports without granding the Admin role</title>
      <link>https://www.servicenow.com/community/community-central-forum/what-role-is-required-to-admin-dashboard-and-reports-without/m-p/3523202#M6641</link>
      <description>&lt;DIV&gt;&lt;H5&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;For Reports&lt;/FONT&gt;&lt;/H5&gt;&lt;UL&gt;&lt;LI&gt;&lt;H5&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;report_admin → Create, edit, delete, share, and schedule reports&lt;/FONT&gt;&lt;/H5&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;H5&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;For Dashboards (Platform Analytics only)&lt;/FONT&gt;&lt;/H5&gt;&lt;UL&gt;&lt;LI&gt;&lt;H5&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;pa_viewer → View Platform Analytics dashboards&lt;/FONT&gt;&lt;/H5&gt;&lt;/LI&gt;&lt;LI&gt;&lt;H5&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;pa_admin → Full administration of Platform Analytics dashboards and data visualizations&lt;/FONT&gt;&lt;/H5&gt;&lt;H5&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;(create, edit, share, certify, delete)&lt;/FONT&gt;&lt;/H5&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;HR /&gt;&lt;H5&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Optional (ownership &amp;amp; governance)&lt;/FONT&gt;&lt;/H5&gt;&lt;UL&gt;&lt;LI&gt;&lt;H5&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;dashboard_admin → Manage dashboard ownership and sharing (legacy/classic dashboards)&lt;/FONT&gt;&lt;/H5&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 10 Apr 2026 14:59:04 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/what-role-is-required-to-admin-dashboard-and-reports-without/m-p/3523202#M6641</guid>
      <dc:creator>Purvi Kotadiya</dc:creator>
      <dc:date>2026-04-10T14:59:04Z</dc:date>
    </item>
  </channel>
</rss>

