top of page
Search

Cancel Concurrent Request

Writer: mdvorkinmdvorkin

Cancell all requests submitted by a user


-- Change user name to whatever you need

update FND_CONCURRENT_REQUESTS

set phase_code = 'C',

status_code = 'D'

where requested_by = (select user_id from fnd_user where user_name = 'XXX')

and phase_code in ('P','R','I');

 
 
 

Recent Posts

See All

Get DDL for Oracle object

set feed off set long 1000000 set longchunksize 1000000 set pages 0 set lines 32767 set trimspool on set feed off set wrap on set...

Foreign key constraint violation

/* This PL/SQL script checks violations of foreign key constraints Example of the tables: CREATE TABLE temp_supplier ( supplier_id...

Comments


bottom of page