Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to cancel a concurrent request ? 1

Status
Not open for further replies.

devefe2

Programmer
Nov 10, 2003
2
FR
Hello !
How can I cancel or terminate a concurrent request within a
PL/SQL program ? Of course I know the request id !
Is there another way (except using the Requests Window) ?
Thanks a lot for your time and your help.
:eek:)
 
sql> update fnd_concurrent_requests
set status_code='X', phase_code='C'
where request_id=xxxxxx;
sql> commit;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top