cancel
Showing results for 
Search instead for 
Did you mean: 

Get information about users, which shows and works on my webdynpro

Former Member
0 Kudos

Hi everybody

I need to know, what is the form to get the information about de user, who's shows and entry my webdynpro. i need this information to send to RFC Model to ABAP server

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Use the UME for that:


try {
	IWDClientUser wdUser;
	wdUser = WDClientUser.getCurrentUser();
	IUser user = wdUser.getSAPUser();
	
} catch (WDUMException e) {
	e.printStackTrace();
}

variable "user" has now all the data from the current user executing the dynpro, extract the info from "user", then pass it as input parameter to your RFC's.

Regards

Julio C. Herrera

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks, it so helpful