Question

Get the current user name from vs

  • 9 March 2022
  • 1 reply
  • 506 views

Badge +2

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


1 reply

Userlevel 4
Badge +7

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