Hi team,
How can we get the list of system administrators on Appian. Is there a group to get this list.
The users that are part of "Designer", is only admins?
Discussion posts and replies are publicly visible
You can create a group and add all sys admins using a membership rule.
In the designers Groups systems admins are added directly when you create an account in appian.
In designers group basic users can also be there . They don't have the admin access but they can access the o applications with necessary permissions in the application.
Below code will help you to get the list of admin users.
a!localVariables( local!users: getallusers(0,-1), reject(fn!isnull,a!forEach( items: local!users, expression: if( user(fv!item,"userTypeName")="Administrator", fv!item, null() ) )) )
Hello Purvaja https://community.appian.com/b/appmarket/posts/people-functions---plug-inInstall(Deploy) the "People Functions" plugin from the Appian Marketplace.Use the getAllUsers() function to retrieve all users.Iterate through the users and use isUserSystemAdministrator() function to identify admins.