Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Username restriction

Former Member
0 Likes
667

How can the creation of usernames be restricted in ABAP systems, so it can’t contain the danish characters æøå?

We have the problem with usernames in the portal, which can’t recognize these characters in usernames.

How can the creation of usernames be restricted in ABAP systems, so it can’t contain the danish characters æøå?

We have the problem with usernames in the portal, which can’t recognize these characters in usernames.

4 REPLIES 4
Read only

Former Member
0 Likes
618

Usernames are given by security admin (a relative small group of people) so solve your problem by a procedure.

Edited by: Auke Visser on Jan 22, 2008 7:21 AM

Read only

0 Likes
618

Unfortunately can't our problem only be solved by procedures. There is delegated useradministration in our systems, the small group of user administrators are +100, due to the organizational setup.

Read only

0 Likes
618

> Usernames are given by security admin (a relative small group of people) so solve your problem by a procedure.

Well, that's not true in all cases - just think of those "self-registration" scenarios.

Read only

Wolfgang_Janzen
Product and Topic Expert
Product and Topic Expert
0 Likes
618

How can the creation of usernames be restricted in ABAP systems, so it can’t contain the danish characters æøå?

We have the problem with usernames in the portal, which can’t recognize these characters in usernames.

In that case I'd recommend to use the UME to create user accounts - rather than the ABAP user management (SU01), directly.

In general: in non-unicode systems you should avoid using any characters (especially for the userID or the password) which is not contained in the ASCII character set - to ensure that the user is able to enter his userID / password in order to logon to the system. In unicode systems, however, it should always be posssible to use any character (just that it can be cumbersome to locate those characters on your keyboard ...).

Cheers, Wolfgang