Thursday 11 February 2021

How to terminate running concurrent request from the server(Backend).

 

This document describes how to terminate the running concurrent requests from backend.

Sometimes we may need to cancel the running concurrent requests from server instead of concurrent requests form.

Use below update statement to terminate the running request.


SQL> update apps.fnd_concurrent_requests set phase_code='C' , status_code='X' where request_id='&REQUEST_ID';

Note: Pass the request ID which we need to terminate.

commit;





Thanks for going through the post........

No comments:

Post a Comment