Skip to main content
Solved

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

  • April 27, 2022
  • 2 replies
  • 148 views

Forum|alt.badge.img+9

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

Best answer by Charith Epitawatta

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!

2 replies

Charith Epitawatta
Ultimate Hero (Employee)
Forum|alt.badge.img+31
  • Ultimate Hero (Employee)
  • 1094 replies
  • Answer
  • April 27, 2022

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!


Forum|alt.badge.img+9
  • Author
  • Sidekick (Customer)
  • 40 replies
  • April 27, 2022

Hi, thank you!