Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Suggested Answer
+1
person also asked this
people also asked this
Replies
3 replies
Answers
1 answer
Subscribers
10 subscribers
Views
3781 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
General
Is there a report i can run that will show who has System Admin access?
joep45
over 9 years ago
Is there a report i can run that will show who has System Admin access?
OriginalPostID-162795
OriginalPostID-162795
Discussion posts and replies are publicly visible
0
sikhivahans
over 9 years ago
@joep To the best of my knowledge, I don't think there is an OOTB functionality for doing this. But probably after querying the data (as suggested by Steven and Eduardo at /search?q=OriginalPostID-137567) about the system administrators in your Appian instance, you could build one such report using SAIL.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
vinitl522
A Score Level 2
over 9 years ago
May be you can just have a look at groupmanagement application/plugin in APPIAN forum, It has a function i believe which can identify system adminsitrator access in your appian instance.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
+1
Ben Anderson
over 6 years ago
To determine the system admins, you can run the following expression:
=load(
local!designerUsers: getdistinctusers(getgroupbyname("Designers")),
local!adminUsers: apply(fn!isusersystemadministrator,local!designerUsers),
index(local!designerUsers,where(local!adminUsers),{})
)
The default Designers group contains all system admins by rule, but non-admin users can be added to the group so the second step is needed.
You can use this expression as the basis for the desired report.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Reject Answer
Cancel