Solved

Package that identifies what client (Aurena / EE) is being used?

  • 27 April 2022
  • 2 replies
  • 102 views

Userlevel 3
Badge +9

Is anybody aware of a package that I could use that identifies what client (Aurena / EE) is being used by a user?

icon

Best answer by Charith Epitawatta 27 April 2022, 17:13

View original

2 replies

Userlevel 7
Badge +31

Hi @JamesW72,

If you need this for something like a Custom Event in the application, I think you should be able to use Fnd_Session_Api.Is_Odp_Session()  function. Depending on whether the session is initiated by the Odata Provider or not, the function will return either TRUE or FALSE. For IEE, this would return FALSE while for Aurena, it should return TRUE.

This function would however return FALSE if you execute it using an SQL client such as SQL Developer as well, so it would be suitable or not depending on how you plan to use the function.

Hope this helps!

Userlevel 3
Badge +9

Hi, thank you!

Reply