By default concurrent manager jobs are run under the APPS user. Is it possible to configure it to run as another user? I’d like to be able to isolate some of my stored procedures.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not aware of any standard way, but you could code your concurrent request to handle that. E.g. copy fnd_concurrent_requests, then in the ‘real’ concurrent program insert into your custom_fnd_concurrent_requests ‘select * from fnd_concurrent_requests’. Create dbms_job or something to poll your custom table, and get it to call your ‘real’ program – make sure you fnd_global.initialize with the user, resp, and appl from fnd_concurrent_requests, and direct output to your own files using utl_file rather than fnd_file.