How to use WF_NOTIFICATION api to approve the notification?
no4ericJul 6 2011 — edited Jul 11 2011Hi all,
I want to use PL/SQL to write a script to approve a notification without using Oracle EBS(11.5.10.2). My script is as the followings but the status of the notification is still waiting for approve after commit my script.... Is there any way to resolve this problem?
===================================================
begin
WF_NOTIFICATION.SetAttrText(nid => 7382356, aname => 'RESULT', avalue => 'APPROVED');
commit ;
end ;