Which IIQ version are you inquiring about?
[8.4]
Share all details about your problem, including any error messages you may have received.
*[I have created a Custom QuickLink, this QuickLink is visible to everyone. I want this QuickLink should be accessed by or visible to the admin only. I have the DynamicScopeRef like this below.
*
<QuickLinkOptions allowSelf="true">
<DynamicScopeRef>
<Reference class="sailpoint.object.DynamicScope" name="Everyone"/>
</DynamicScopeRef>
</QuickLinkOptions>
pattabhi
(Pattabhi Nandarapu)
November 12, 2025, 5:16am
2
Hi @harishchappidi_11
Create DynamicScope
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE DynamicScope PUBLIC "sailpoint.dtd" "sailpoint.dtd">
<DynamicScope name="SystemAdministrator">
<Selector>
<IdentitySelector>
<MatchExpression>
<MatchTerm name="capabilities" value="SystemAdministrator"/>
</MatchExpression>
</IdentitySelector>
</Selector>
</DynamicScope>
update the Quicklink Populations as per your requirement.
Gear Icon – Global Settings – Quicklink Populations
1 Like
msingh900
(Manish Singh)
November 12, 2025, 5:17am
3
Follow the steps:
Create a DynamicScope through the Quicklink Populations page. Make this scope visible only to System Administrators.
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE DynamicScope PUBLIC "sailpoint.dtd" "sailpoint.dtd">
<DynamicScope created="" id="" name="SysAdmin">
<Selector>
<IdentitySelector>
<MatchExpression>
<MatchTerm name="capabilities" value="SystemAdministrator"/>
</MatchExpression>
</IdentitySelector>
</Selector>
</DynamicScope>
Add this dynamic scope to the quicklink object.
<QuickLinkOptions allowSelf="true">
<DynamicScopeRef>
<Reference class="sailpoint.object.DynamicScope" name="SysAdmin"/>
</DynamicScopeRef>
</QuickLinkOptions>
Thanks
2 Likes
amit_1140
(Amit Kumar)
November 12, 2025, 8:29am
4
@harishchappidi_11 -
Below is the high level steps -
Create a new Dynamic Scope for System Administrators
UI: Gear icon → Global Settings → QuickLink Populations → New
Purpose : select identities that have the System Administrator capability.
You can also import the below xml to create the dynamic scope-
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE DynamicScope PUBLIC "sailpoint.dtd" "sailpoint.dtd">
<DynamicScope name="SystemAdministrators">
<Description>System Administrators population</Description>
<Selector>
<IdentitySelector>
<MatchExpression>
<MatchTerm name="capabilities" value="SystemAdministrator"/>
</MatchExpression>
</IdentitySelector>
</Selector>
</DynamicScope>
Attach the Dynamic Scope to the QuickLink
Edit your QuickLink and reference the new scope in QuickLinkOptions.
QuickLink fragment
<QuickLinkOptions allowSelf="true">
<DynamicScopeRef>
<Reference class="sailpoint.object.DynamicScope" name="SystemAdministrators"/>
</DynamicScopeRef>
</QuickLinkOptions>
Only identities included by the SystemAdministrators Dynamic Scope (i.e., those with the SystemAdministrator capability) will be able to access/run this QuickLink.
Let me know in case you have any queries.
1 Like
Thanks for the Quick solution @Pattabhi Nandarapu
Thanks @Manish Singh for providing the solution.
Hello @Amit Kumar Thanks for the step by step solution, it helped me to fix my QuickLink
pattabhi
(Pattabhi Nandarapu)
November 21, 2025, 5:41am
8
Dear @Harikrishna_06
Greetings of the day. please mark one of the comment as solution, for better documentation and it will dis-appear from unresolved topics list.
system
(system)
Closed
January 20, 2026, 5:41am
9
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.