Configuring Users' Display Name
Prerequisites
This procedure requires you to restart SAP NetWeaver Application Server (AS) Java, so you should plan for the required down time while the AS Java restarts.
Context
A user's display name is the name displayed for a user in the user management engine (UME) user interface, for example in list of results when you search for a user in identity management. It is the name that is returned by the method IUser.getDisplayName() .
By default the display name is the user's last name followed by the first name. You can customize the display name, for example the user's salutation followed by first name and then last name.
Procedure
-
Configure the required UME properties.
For more information about editing UME properties, see Editing UME Properties .
The required property is ume.users.displayname_template.
The default template is {lastname}, {firstname} . Use any of the following components to modify the template:
-
User attributes
The available user attributes are: {firstname}, {lastname}, {salutation}, {title}, {jobtitle}, {company}, {department}, {currency}, {email}, {telephone}, {mobile}, {fax}, {streetaddress}, {city}, {zip}, {country}, {state}, {locale}, {timezone}, and {j_user}
-
Characters
-
-
Restart the AS Java.
Example
If the UME property is set as follows:
ume.users.displayname_template= {salutation} {firstname} {lastname}
For a user whose first name is Peter, last name is Miller, and salutation is Mr, the display name is Mr Peter Miller .
This display name appears on all user interfaces that use the method IUser.getDisplayName().