DBA Data[Home] [Help]

PACKAGE: APPS.OE_DEPENDENCIES_EXTN

Source


1 PACKAGE OE_Dependencies_Extn AS
2 /* $Header: OEXEDEPS.pls 120.0 2005/05/31 22:46:59 appldev noship $ */
3 
4 TYPE Dep_Rec_Type IS RECORD
5 (source_attribute        NUMBER
6 ,dependent_attribute     NUMBER
7 ,enabled_flag            VARCHAR2(1) := 'Y'
8 );
9 
10 TYPE Dep_Tbl_TYPE IS TABLE OF Dep_Rec_Type
11 INDEX BY BINARY_INTEGER;
12 
13 PROCEDURE   Load_Entity_Attributes
14 (   p_entity_code	IN  VARCHAR2
15 ,   x_extn_dep_tbl      OUT NOCOPY /* file.sql.39 change */ Dep_Tbl_TYPE);
16 
17 END OE_Dependencies_Extn;