Close Notifications
They are many ways to do it. The following script can be use to Close the Notification.
/*********************************************
— Date ‘Current Date’
— Author JPREDDY
— Purpose : Close Notifications
**********************************************/
BEGIN
wf_notification.RESPOND( 12504888, — Notification ID.
‘Close requested by on ‘||Sysdate, — Comments
‘IM12345’ ); — Incident Number.
COMMIT;
END;
/You can know the status of the Notification from the following Query.
select * from wf_notifications
where NOTIFICATION_ID=12504888
There is some equal-vent API which does this work.
wf_notification.close(12280094 — Notification ID
,’SYSADMIN’);
Leave a Reply
Want to join the discussion?Feel free to contribute!