DBA Data[Home] [Help]

PACKAGE: APPS.UMX_PROXY_NTF_WF

Source


1 PACKAGE UMX_PROXY_NTF_WF AUTHID CURRENT_USER as
2 /*$Header: UMXVPNTS.pls 120.0 2005/10/13 15:27 cmehta noship $*/
3 
4   /**
5    * Procedure   :  LAUNCH_WORKFLOW
6    * Type        :  Private
7    * Pre_reqs    :  WF_ENGINE.CREATEPROCESS, WF_ENGINE.SETITEMATTRTEXT, and
8    *                WF_ENGINE.STARTPROCESS.
9    * Description :  Create and Start workflow process
10    * Parameters  :
11    * input parameters
12    * @param
13    *   p_proxy_username
14    *     description:  FND user's username.  The recipient of the notification.
15    *     required   :  N
16    *     validation :  Must be a valid FND User.
17    *     default    :  null
18    *   p_start_date
19    *     description:  Date when the proxy privilege begins
20    *     required   :  Y
21    *   p_end_date
22    *     description:  Date when the proxy privilege ends
23    *     required   :  N
24    * output parameters
25    * @return
26    * Errors : possible errors raised by this API
27    * Other Comments :
28    */
29   PROCEDURE LAUNCH_WORKFLOW (p_proxy_username  in varchar2,
30                              p_start_date      in date,
31                              p_end_date        in date default null);
32 
33 
34 end UMX_PROXY_NTF_WF;