DBA Data[Home] [Help]

APPS.EDW_FACT_SV dependencies on EDW_ATTRIBUTE_PROPERTIES

Line 93: from edw_attribute_properties

89: nLoopCounter INTEGER := 0;
90:
91: Cursor C_Skip_Columns(p_object_short_name VARCHAR2) IS
92: select attribute_name, attribute_type
93: from edw_attribute_properties
94: where skip_flag = 'Y'
95: and object_short_name = p_object_short_name;
96:
97: Skip_Columns C_Skip_Columns%ROWTYPE;