EsbListUsersEx() lists all users who have access to a particular Essbase server, application or database. This function operates similar to EsbListUsers(), with the addition of the security protocol parameter.
Declare Function EsbListUsersEx Lib "esbapin" ( ByVal hCtx As Long, ByVal AppName As String, ByVal DbName As String, ByVal Protocol As String, pItems As Integer) As Long
hCtx | The Essbase API context handle. |
AppName | The Application name. If NULL, lists all users. |
DbName | The database name. If NULL, lists users for all databases within application. |
Protocol | The name of the external authentication security protocol mechanism. |
pItems | The count of users. |
If successful, returns a count of the number of users in pCount, and list of users with access to the specified application and database in ppUserList.
This function requires no special privileges.