Solved

How to get the list of users connected to Base Profile

  • 17 May 2023
  • 4 replies
  • 219 views

Userlevel 6
Badge +11

Dear Team,

Is there any specific window or other way that we can get the list of users connected with a specific profile or who are not connected ?
 

Wants to see the list who are not connected with the base profile or null?

Many thanks in advance.

 

Best regards,

Kalhari.

icon

Best answer by Manulak 17 May 2023, 13:40

View original

4 replies

Userlevel 3
Badge +8

Looks like the profiles are defined in the table fndrr_client_profile_tab, and the profile/user assignments in fndrr_user_client_profile_tab, so you should be able to use these tables to write a query to give you the information you need.

Userlevel 4
Badge +8

The base profile content and the users assigned can be viewed on Base Profile details screen.

 

 

To view users who are not connected with a base profile, simply create an SQL quick report with the following statement.

SELECT IDENTITY 

  FROM IFSAPP.FND_USER user_

 WHERE user_.ACTIVE = 'TRUE'

  AND IDENTITY NOT IN (SELECT IDENTITY

                         FROM IFSAPP.FNDRR_USER_CLIENT_PROFILE

                        WHERE ORDINAL = 1)

Alter the same to get customized results if required.

Userlevel 6
Badge +11

Hi @Manulak 

 

Thank you very much for the detailed answer. It worked :)

 

Best regards,

Kalhari.

Userlevel 3
Badge +7

@ridvanyazici 

Reply