DBA Data[Home] [Help]

PACKAGE: APPS.PA_PRODUCT_INSTALL_UTILS

Source


1 PACKAGE PA_product_install_Utils AUTHID CURRENT_USER AS
2 /* $Header: PAPIUTLS.pls 120.1 2005/08/19 16:40:45 mwasowic noship $ */
3 
4  Function check_object_licensed ( p_object_type  IN  VARCHAR2,
5                                  p_object_code  IN VARCHAR2)
6    RETURN VARCHAR2;
7 
8   Procedure validate_object(
9    p_object_type    IN  VARCHAR2,
10    p_object_code    IN  VARCHAR2,
11    x_ret_code       out NOCOPY varchar2, --File.Sql.39 bug 4440895
12    x_return_status  out NOCOPY varchar2, --File.Sql.39 bug 4440895
13    x_msg_count      out NOCOPY number, --File.Sql.39 bug 4440895
14    x_msg_data       out NOCOPY varchar2); --File.Sql.39 bug 4440895
15 
16   Procedure check_function_licensed
17   (
18    p_function_name   IN  VARCHAR2,
19    x_ret_code       out NOCOPY varchar2, --File.Sql.39 bug 4440895
20    x_return_status  out NOCOPY varchar2, --File.Sql.39 bug 4440895
21    x_msg_count      out NOCOPY number, --File.Sql.39 bug 4440895
22    x_msg_data       out NOCOPY varchar2)   ; --File.Sql.39 bug 4440895
23 
24   /************************************************************************
25    This function detremines the whether it is licensed to use a function or Not
26    Name of the Function : check_function_licensed
27    IN PARAMETERS  p_function_name - Name of the function
28    RETURN VALUE   - Y - Eligible to use
29                     N- Not  Eligible to use
30     *************************************************************************/
31    Function check_function_licensed ( p_function_name  IN  VARCHAR2)
32    RETURN VARCHAR2;
33 
34   Procedure check_region_licensed
35   (
36    p_region_code    IN  VARCHAR2,
37    x_ret_code       out NOCOPY varchar2, --File.Sql.39 bug 4440895
38    x_return_status  out NOCOPY varchar2, --File.Sql.39 bug 4440895
39    x_msg_count      out NOCOPY number, --File.Sql.39 bug 4440895
40    x_msg_data       out NOCOPY varchar2)   ; --File.Sql.39 bug 4440895
41 
42   /************************************************************************
43    This function detremines the whether it is licensed to use a AK region or Not
44    Name of the Function : check_region_licensed
45    IN PARAMETERS  p_function_name - Name of the function
46    RETURN VALUE   - Y - Eligible to use
47                     N- Not  Eligible to use
48     *************************************************************************/
49 
50    Function check_region_licensed ( p_region_code  IN  VARCHAR2)
51    RETURN VARCHAR2;
52 
53 END PA_product_install_Utils;