DBA Data[Home] [Help]

PACKAGE: APPS.EGO_UPGRADE_USER_ATTR_VAL_PUB

Source


1 PACKAGE EGO_UPGRADE_USER_ATTR_VAL_PUB AUTHID CURRENT_USER AS
2 /* $Header: EGOUPGAS.pls 115.0 2004/03/19 06:49:33 ansubram noship $ */
3 
4 
5 
6                           ----------------
7                           -- Procedures --
8                           ----------------
9 
10 /*
11  * Upgrade_Cat_User_Attrs_Data
12  * ----------------------------
13  * This procedure defaults the attributes for all the categories
14  * in the default category set of a functional area.
15  * p_functional_area_id is the functional area whose default
16  * category set the activity is for.
17  * p_attr_group_type is the attribute group type we process.
18  * p_attr_group_name is the specific attribute group that will be
19  * processed. If p_attr_group_name is null we process all attribute groups
20  * associated with the attribute group type.
21  */
22 PROCEDURE Upgrade_Cat_User_Attrs_Data
23 (
24         p_api_version                   IN  NUMBER DEFAULT 1.0
25        ,p_functional_area_id            IN  NUMBER
26        ,p_attr_group_name               IN  VARCHAR2 DEFAULT NULL
27        ,x_return_status                 OUT NOCOPY VARCHAR2
28        ,x_errorcode                     OUT NOCOPY NUMBER
29        ,x_msg_count                     OUT NOCOPY NUMBER
30        ,x_msg_data                      OUT NOCOPY VARCHAR2
31 );
32 
33 
34 END EGO_UPGRADE_USER_ATTR_VAL_PUB;
35