Returns a Table Array of all the Users in the group, including their Teams. When this Function has no arguments it only updates when the Project is opened or a Specification started or opened. The overload has one argument whose value needs to change in order for the Function to be recalculated.
Consider using the core function SecGetUsersInTeam.
SppGetAllUsers([Recalculation Trigger])
Where:
Recalculation Trigger (optional) is the trigger to force a recalculation during the running of a specification.
See How To: Force a data refresh when data has changed for one example of implementing a trigger.
Rule | Result | Meaning |
---|---|---|
SppGetAllUsers(DWConstantRefreshData) | {"Username","DisplayName","EmailAddress","IsTeamleader","IsEnabled","Teams"; "Admin","","","True","True","Administrators"; "Ian","Ian","ian@myCo.uk","True","True","Sales|Administrators"; "Paul","Paul","paul@myCo.uk","False","True","Administrators"; "Jane","Jane","jane@myCo.uk","True","True","Sales"; "Megan","Megan","megan@myCo.uk","False","False","Sales"} | Will return a table array of all DriveWorks Users listed under Security Settings. |
Username | DisplayName | EmailAddress | IsTeamleader | IsEnabled | Teams |
---|---|---|---|---|---|
Admin | TRUE | TRUE | Administrators | ||
Ian | Ian | ian@myCo.uk | TRUE | TRUE | Sales|Administrators |
Paul | Paul | paul@myCo.uk | FALSE | TRUE | Administrators |
Jane | Jane | jane@myCo.uk | TRUE | TRUE | Sales |
Megan | Megan | megan@myCo.uk | FALSE | FALSE | Sales |