DBA Data[Home] [Help]

PACKAGE: APPS.FND_USER_VALIDATION

Source


1 PACKAGE FND_USER_VALIDATION as
2 /* $Header: AFSCUVAS.pls 120.0 2005/07/26 23:45:19 appldev noship $ */
3 -- Start of Comments
4 -- Package name     : FND_USER_VALIDATION
5 -- Purpose          :
6 --   This package contains specification individual user registration
7 
8   --
9   --  Function
10   --  Custom_validation
11   --
12   -- Description
13   -- This method is a subscriber to the event oracle.apps.fnd.user.name.validate
14   -- This method will validate a Email as username policy
15   -- This method will return Success if Email is in proper format
16   -- Else It will raise an application Error
17   -- IN
18   -- the signature follows Workflow business events standards
19   --  p_subscription_guid  -
20   -- IN/OUT
21   -- p_event - WF_EVENT_T which holds the data that needs to passed from/to
22   --           subscriber of the event
23   --
24 
25 
26 function Custom_Validation(p_subscription_guid in raw,
27                              p_event in out NOCOPY WF_EVENT_T
28                             ) return varchar2;
29 
30 
31 end FND_USER_VALIDATION;