DBA Data[Home] [Help]

PACKAGE: APPS.DOM_SECURITY_PVT

Source


1 PACKAGE DOM_SECURITY_PVT AUTHID CURRENT_USER AS
2 /* $Header: DOMVSECS.pls 120.3 2006/08/17 13:41:00 ysireesh noship $ */
3 /*---------------------------------------------------------------------------+
4  | This package contains APIs to reslove docuemnt security mappings          |
5  | based on fnd data security                                                |
6  +---------------------------------------------------------------------------*/
7 
8   G_PKG_NAME 	CONSTANT VARCHAR2(30):= 'DOM_SECURITY_PVT';
9 
10   FUNCTION get_oid_user(p_user_name VARCHAR2) RETURN VARCHAR2;
11 
12   PROCEDURE get_oid_users
13   (
14       l_user_names IN DOM_USER_NAMES_ARRAY,
15       x_oid_user_names OUT NOCOPY DOM_USER_NAMES_ARRAY
16   );
17 
18 END DOM_SECURITY_PVT;