DBA Data[Home] [Help]

APPS.CTO_CONFIG_ITEM_PK dependencies on MTL_ITEM_ATTRIBUTES

Line 344: TYPE ATTRIB_NAME_TAB_TYPE is table of mtl_item_attributes.attribute_name%type index by binary_integer ;

340: PG_DEBUG Number := NVL(FND_PROFILE.value('ONT_DEBUG_LEVEL'), 0);
341:
342: g_atp_flag varchar2(1) := 'N' ;
343:
344: TYPE ATTRIB_NAME_TAB_TYPE is table of mtl_item_attributes.attribute_name%type index by binary_integer ;
345:
346: TYPE CONTROL_LEVEL_TAB_TYPE is table of mtl_item_attributes.control_level%type index by binary_integer ;
347:
348: g_attribute_name_tab ATTRIB_NAME_TAB_TYPE ;

Line 346: TYPE CONTROL_LEVEL_TAB_TYPE is table of mtl_item_attributes.control_level%type index by binary_integer ;

342: g_atp_flag varchar2(1) := 'N' ;
343:
344: TYPE ATTRIB_NAME_TAB_TYPE is table of mtl_item_attributes.attribute_name%type index by binary_integer ;
345:
346: TYPE CONTROL_LEVEL_TAB_TYPE is table of mtl_item_attributes.control_level%type index by binary_integer ;
347:
348: g_attribute_name_tab ATTRIB_NAME_TAB_TYPE ;
349: g_control_level_tab CONTROL_LEVEL_TAB_TYPE ;
350:

Line 9443: from mtl_item_attributes

9439:
9440: select substr( attribute_name, instr( attribute_name, '.' )+ 1 ) , control_level
9441: BULK COLLECT
9442: INTO g_attribute_name_tab, g_control_level_tab
9443: from mtl_item_attributes
9444: where control_level = 1 ;
9445:
9446:
9447: if( get_attribute_control( 'atp_flag' ) = 1 ) then