Skip to main content

Hi All,

I want to post a background job via a custom event action as app owner (needs to perform event action as a different user) without using impersonate user.’Fnd_Session_API.Impersonate_Fnd_User(‘IFSAPP’)

Does anyone know any other option in APPS 10?

Thanks!

You could try this, if only the background job needs to be performed by appowner (IFSAPP):

  1. Create the background job with Transaction_SYS.Deferred_Call and use the overloaded method where you get back the ID of the background job:

     

  2. Make a hard update of USERNAME in TRANSACTION_SYS_LOCAL_TAB to appowner using the ID.

Hi All,

I want to post a background job via a custom event action as app owner (needs to perform event action as a different user) without using impersonate user.’Fnd_Session_API.Impersonate_Fnd_User(‘IFSAPP’)

Does anyone know any other option in APPS 10?

Thanks!

Thank you @Tomas Ruderfelt :)