By default, user name details is shown in "surname", "name" format but we would like see it as "name", "surname".
Is there are specific configuration for this?
By default, user name details is shown in "surname", "name" format but we would like see it as "name", "surname".
Is there are specific configuration for this?
The value here comes from the column NAME in the view V_MASTER_ENTERPRISE_USERS. It is not possible to change the display through any UI configuration. The view definition needs to be changed to achieve that.
One workaround would be to collect the name in required format as a custom user attribute. Basically, change collectors to collect FIRST_NAME || ', ' || LAST_NAME as FULL_NAME where FULL_NAME can be mapped to the custom attribute (say Full Name) on the users. This 'Full Name' can then be used as default column in users table.
The value here comes from the column NAME in the view V_MASTER_ENTERPRISE_USERS. It is not possible to change the display through any UI configuration. The view definition needs to be changed to achieve that.
One workaround would be to collect the name in required format as a custom user attribute. Basically, change collectors to collect FIRST_NAME || ', ' || LAST_NAME as FULL_NAME where FULL_NAME can be mapped to the custom attribute (say Full Name) on the users. This 'Full Name' can then be used as default column in users table.