I am trying to find a way to list all the users setup as system administrator an

I am trying to find a way to list all the users setup as system administrator and I am an Appian Admin. Do you have any suggestions?

OriginalPostID-152312

OriginalPostID-152312

  Discussion posts and replies are publicly visible

Parents
  • @ajays If I understand your question correctly, implementing the isusersystemadministrator (present in plugin at https://forum.appian.com/suite/tempo/records/type/components/item/i0BWsQdLlzKy55h8z8zJ0sPqpDWFrba9l14mbyubY4XI6t1hRI7xLwkvHhqsuQ/view/summary) with the combination of looping function is a handy solution (and other way as well) to some extent and following is the way how we can use:

    filter(fn!isusersystemadministrator(_),getdistinctusers(topeople())) => returns System Administrators

    reject(fn!isusersystemadministrator(_),getdistinctusers(topeople())) => returns Basic Users
Reply
  • @ajays If I understand your question correctly, implementing the isusersystemadministrator (present in plugin at https://forum.appian.com/suite/tempo/records/type/components/item/i0BWsQdLlzKy55h8z8zJ0sPqpDWFrba9l14mbyubY4XI6t1hRI7xLwkvHhqsuQ/view/summary) with the combination of looping function is a handy solution (and other way as well) to some extent and following is the way how we can use:

    filter(fn!isusersystemadministrator(_),getdistinctusers(topeople())) => returns System Administrators

    reject(fn!isusersystemadministrator(_),getdistinctusers(topeople())) => returns Basic Users
Children