DBA Data[Home] [Help]

PACKAGE: APPS.PA_EXT_ATTRIBUTE_UTILS

Source


1 PACKAGE PA_ext_attribute_Utils AUTHID CURRENT_USER AS
2 /* $Header: PAEXTUTS.pls 115.2 2003/08/14 20:59:07 syao noship $ */
3 
4 -- This function is used to retrieve names of all the attribute groups
5 -- given a classification code
6 
7 Function get_attribute_groups
8   (
9    p_classfication_code IN VARCHAR2
10    )  RETURN VARCHAR2  ;
11 
12 -- This function is used to retrieve names of all the page regions
13 -- given a classification code
14 Function get_page_regions
15   (
16    p_classfication_code IN VARCHAR2
17    )  RETURN VARCHAR2  ;
18 
19 FUNCTION check_object_page_region
20   (
21    p_object_type VARCHAR2,
22    p_object_id   NUMBER,
23    p_page_id NUMBER
24    ) RETURN VARCHAR2;
25 
26 
27 END PA_ext_attribute_Utils;
28