oracle workflow notifications
update apps.wf_notifications set status ='CLOSED' where
status='OPEN' and begin_date < sysdate -60;
commit;
If I run the above statements in oracle e-business 11.5.10.2what is the impact...will this clear the notifications without having adverse effects to the e-business system
0