cancel
Showing results for 
Search instead for 
Did you mean: 

WDClientUser. getClientUser("caf_gp_svcuser") returns logged in user

former_member191469
Participant
0 Kudos
72

I am trying to get a service user in a Web Dynpro Callable Object so that I can navigate through the currently running Guide Procedure process, but when I execute the following:

IWDClientUser administrator = WDClientUser. getClientUser("caf_gp_svcuser");

it returns the logged in user instead of the service user. I can get a service user?

View Entire Topic
siddharth_jain
Active Contributor
0 Kudos

Hi,

If you require the IUser object of caf_gp_svcuser user then you can try the following UME Apis in your WD application.

IUser svcUser = UMFactory.getUserFactory().getUserByLogonID("caf_gp_svcuser")

Siddharth