Question: How to I cancel a
concurrent manager request? In have a job that is
pending in the concurrent manager and I want to cancel the
job.
Answer: To Cancel a
concurrent manager Request from within Oracle Applications
eBusiness Suite (EBS), you can run the below query in
SQL*Plus:
update
fnd_concurrent_requests
set
phase_code = 'C',
status_code = 'E'
where
request_id = ;
Another way to cancel a concurrent manager request is to
replace the retest_id column value with the with
concurrent_program_id value. Also se my
concurrent manager tips