DBA Data[Home] [Help]

PACKAGE: APPS.MISPER_WF_SYNCH_USER_ROLE

Source


1 package MISPER_WF_SYNCH_USER_ROLE AUTHID CURRENT_USER as
2 /* $Header: perhrwfs.pkh 120.0.12020000.3 2013/05/10 12:58:38 pathota ship $ */
3 -- ===========================================================================
4 -- Package name     : MISPER_WF_SYNCH_USER_ROLE
5 -- Purpose          :
6 --   This package contains
7 
8   --
9   --  Function
10   --  synch_user_role_assg
11   --
12   -- Description
13   -- This method is a subscriber to the event oracle.apps.fnd.post.user.create
14   -- This method synchs email to uname
15   -- IN
16   -- the signature follows Workflow business events standards
17   --  p_subscription_guid  -
18   -- IN/OUT
19   -- p_event - WF_EVENT_T which holds the data that needs to passed from/to
20   --           subscriber of the event
21   --
22   -- Original Author: Prasanna Athota
23   --
24 
25 function synch_uname_to_role (p_subscription_guid in raw,
26                               p_event in out NOCOPY WF_EVENT_T) return varchar2;
27 End;