DBA Data[Home] [Help]

PACKAGE: APPS.ENI_VALUESET_CATEGORY

Source


1 package ENI_VALUESET_CATEGORY AUTHID CURRENT_USER as
2 /* $Header: ENIITCTS.pls 115.11 2003/08/14 19:41:37 sbag noship $  */
3 
4    -- Main procedure for error handling
5    -- Standard concurrent manager parameters
6    procedure      ENI_POPULATE_MAIN
7   ( Errbuf    out NOCOPY Varchar2,
8     retcode   out NOCOPY Varchar2
9   ) ;
10 
11    -- Procedure which actually looks at all values and creates categories
12    procedure      ENI_POPULATE_CATEGORY ;
13 
14    -- Procedure that validates the structure before calling ENI_POPULATE_CATEGORY
15    function      ENI_VALIDATE_STRUCTURE  return boolean;
16 
17    -- Procedure that returns the value set is associated with the PRODUCT structure
18    function GET_FLEX_VALUE_SET_ID(p_appl_id varchar2,
19                                   p_id_flex_code varchar2,
20                                   p_vbh_catset_id number)
21             return number;
22 
23 end;