DBA Data[Home] [Help]

APPS.CTO_COST_ROLLUP_CONC_PK dependencies on MTL_SYSTEM_ITEMS

Line 44: cfg_item_id mtl_system_items.inventory_item_id%type,

40: --
41: -- PL/SQL tables for holding config items
42: --
43: TYPE r_cfg_item IS RECORD(
44: cfg_item_id mtl_system_items.inventory_item_id%type,
45: cfg_org_id number
46: );
47:
48: TYPE r_cfg_item_cum IS RECORD(

Line 49: cfg_item_id mtl_system_items.inventory_item_id%type

45: cfg_org_id number
46: );
47:
48: TYPE r_cfg_item_cum IS RECORD(
49: cfg_item_id mtl_system_items.inventory_item_id%type
50: );
51:
52: TYPE t_cfg_item IS TABLE OF r_cfg_item INDEX BY BINARY_INTEGER;
53: TYPE t_cfg_item_cum IS TABLE OF r_cfg_item_cum INDEX BY BINARY_INTEGER;