cancel
Showing results for 
Search instead for 
Did you mean: 

Enterprise Users - Search/Filter Facility

Former Member
0 Kudos

Hi,

Is there a way I can search for all users which have a certain authentication type e.g. enterprise in SAP BI 4.1?

Cheers,

Gurvinder

Accepted Solutions (1)

Accepted Solutions (1)

former_member182521
Active Contributor
0 Kudos

This is not possible now in CMC yet. You can raise an Idea here in Idea Place

https://ideas.sap.com/ct/s.bix?c=BB5523E4-062F-4420-B35F-0B1F0D4769A9

Alternatively you can use query builder to idetntify the required information (Assuming every user has alias with enterprise authentication)

SELECT SI_NAME, SI_LASTLOGONTIME FROM CI_SystemObjects

WHERE SI_NAME NOT IN ('Administrator','Guest') AND SI_KIND='User'

AND SI_ALIASES.SI_TOTAL=1

ORDER BY SI_NAME

Answers (0)