Thursday, October 22, 2009
How to close/respond to a FYI notification from PL/SQL
Closing/Responding to a FYI notification is pretty straight forward. You need to just run the following API:
begin
wf_notification.CLOSE (nid => --Notification ID--,
responder => --Responder Name--
);
commit;
end;
Note: The Responder Name should be the same as the 'User Name' which the user uses to login the Oracle applications.
begin
wf_notification.CLOSE (nid => --Notification ID--,
responder => --Responder Name--
);
commit;
end;
Note: The Responder Name should be the same as the 'User Name' which the user uses to login the Oracle applications.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment