DBA Data[Home] [Help]

PACKAGE: APPS.MSDNTF

Source


1 PACKAGE MSDNTF AUTHID CURRENT_USER AS
2 /* $Header: msdntwfs.pls 115.2 2002/05/08 13:08:29 pkm ship   $ */
3 
4 PROCEDURE SETUSER (AdHocRole in varchar2,
5                     UserList in varchar2)  ;
6 
7 PROCEDURE SETROLE (AdHocRole in varchar2, ExpDays in number) ;
8 
9 PROCEDURE REMUSER (AdHocRole in varchar2,
10                    UserList in varchar2) ;
11 
12 -- REMALL cleans up wf_local_roles.  It is called from OES by ntf.purgerole
13 -- ntf.purgerole also calls wf_purge.notificatons and wf_purgeItem
14 -- along with this so all expired notifications are cleaned.
15 -- These are called by expiration_date.
16 --
17 PROCEDURE REMALL (AdHocRole in varchar2)  ;
18 
19 --
20 -- Accepts arguements to set message for notifications.
21 -- Creates notifcation process, sets attributes and
22 -- starts [sends] the notification.  It relies on the
23 -- Ad Hoc directory service being set.
24 
25 PROCEDURE DO_NTFY (WorkflowProcess in varchar2,
26                       iteminput in varchar2,
27                       inputkey in varchar2,
28                       inowner in varchar2,
29                       AdHocRole in varchar2,
30                       URLfragment in varchar2,
31 		      Subject in varchar2,
32                       msgBody in varchar2)  ;
33 
34 end MSDNTF;