Error : The Concurrent Manager Process that was running this request has exited abnormally
When I checked at back end for associated SID for the concurrent request, i couldn't find it.
Unable to cancel a concurrent request out of the queue that is stuck.
Cause
Tried to Cancel a concurrent request. Used the "Cancel Request" button from the Administer > Concurrent > Manager form.
Got the following message:
Request xxxxxx can no longer be cancelled. The Concurrent Manager Process that was running this request has exited abnormally. The ICM will mark this request as completed with error.
Solution
Manually cancel the request out of the queue with the following SQL against the offending
request id(s). This can be safely done while managers are up and running:
SQL> UPDATE fnd_concurrent_requests
2 SET phase_code = 'C', status_code = 'X'
3 WHERE request_id = '28979017';
1 row updated.
SQL> commit;
No comments:
Post a Comment