Friday, September 12, 2014

Concurrent Request Hold and Unhold

 Holding Concurrent Request:
===============================
       
update applsys.fnd_concurrent_requests
set hold_flag = 'Y',last_update_date =sysdate, last_updated_by = -1
where phase_code = 'P' and hold_flag<>'Y';

       

Unholding Concurrent Request:
=================================

update applsys.fnd_concurrent_requests a
set a.hold_flag = 'N' ,
last_update_date = sysdate,
last_updated_by = -1
where phase_code = 'P'
and a.hold_flag = 'Y'
and last_updated_by = -1
and last_update_date > sysdate-1;







No comments:

Post a Comment