Skip to Content
0
Former Member
Aug 02, 2005 at 12:43 PM

different UME attributes from different code

28 Views

Hello,

I have a certain attribute that I am mapping from the LDAP. Assume it is called "MyAttr" and it is located under "com.sap.security.core.usermanagement" Namespace.

When I write this code:

IUserContext userContext = request.getUser();
String[] test = userContext.getAttribute("com.sap.security.core.usermanagement", "MyAttr");

I can retreive the value, but when I write this DynPro code:

IUser user = WDClientUser.getCurrentUser().getSAPUser();
String[] test = user.getAttribute("com.sap.security.core.usermanagement", "MyAttr");

The String[] test is null.

Any idea why I get different results at each case?

Roy