Oracle Application Manager Job Owner

By default, concurrent manager jobs run under the APPS user. Can I configure it to run as a different user? I would like to highlight some of my stored procedures.

0


source to share


1 answer


No standard way is known, but you can program your parallel request to handle it. For example. copy fnd_concurrent_requests, then in a "real" parallel program paste in your custom_fnd_concurrent_requests "select * from fnd_concurrent_requests". Create a dbms_job or something to poll your custom table and ask it to call your "real" program - make sure you fnd_global.initialize with the user, resp and appl from fnd_concurrent_requests and go directly to your own files using utl_file. not fnd_file.



+1


source







All Articles