Skip to main content

How to get the current user in the foreground visual studio instead of making fnd in oracle_ session_ api. get_ fnd_ User (), my environment is ifs9

 

Thanks

I’m not a VS developer, so I’m not sure if this is the method of user ID retrieval you’re looking for.  But either of the following SQL queries would provide the user ID of the currently active session in Apps 9:

SELECT fnd_user FROM fnd_session;

SELECT directory_id FROM fnd_client_logon;


Reply