DBA Data[Home] [Help]

APPS.OE_BULK_CONFIG_UTIL dependencies on OE_BULK_CACHE

Line 1253: -- l_index := OE_Bulk_Cache.Load_Item(l_line_rec.inventory_item_id(p_index),

1249: oe_debug_pub.add( 'ENTERING OE_BULK_CONFIG_UTIL.Load_Item_Attributes ') ;
1250: END IF;
1251:
1252: -- Load item cache and Get the index
1253: -- l_index := OE_Bulk_Cache.Load_Item(l_line_rec.inventory_item_id(p_index),
1254: -- l_line_rec.ship_from_org_id(p_index)); Use l_index to lookup the item attributes
1255: -- as -> OE_Bulk_Cache.G_Line_Tbl(l_index).$attribute
1256:
1257: l_item_index := OE_BULK_CACHE.Load_item(

Line 1255: -- as -> OE_Bulk_Cache.G_Line_Tbl(l_index).$attribute

1251:
1252: -- Load item cache and Get the index
1253: -- l_index := OE_Bulk_Cache.Load_Item(l_line_rec.inventory_item_id(p_index),
1254: -- l_line_rec.ship_from_org_id(p_index)); Use l_index to lookup the item attributes
1255: -- as -> OE_Bulk_Cache.G_Line_Tbl(l_index).$attribute
1256:
1257: l_item_index := OE_BULK_CACHE.Load_item(
1258: p_key1 => p_line_rec.inventory_item_id(p_index),
1259: p_key2 => p_line_rec.ship_from_org_id(p_index) );

Line 1257: l_item_index := OE_BULK_CACHE.Load_item(

1253: -- l_index := OE_Bulk_Cache.Load_Item(l_line_rec.inventory_item_id(p_index),
1254: -- l_line_rec.ship_from_org_id(p_index)); Use l_index to lookup the item attributes
1255: -- as -> OE_Bulk_Cache.G_Line_Tbl(l_index).$attribute
1256:
1257: l_item_index := OE_BULK_CACHE.Load_item(
1258: p_key1 => p_line_rec.inventory_item_id(p_index),
1259: p_key2 => p_line_rec.ship_from_org_id(p_index) );
1260:
1261: l_bom_item_type := OE_BULK_CACHE.G_Item_Tbl(l_item_index).bom_item_type;

Line 1261: l_bom_item_type := OE_BULK_CACHE.G_Item_Tbl(l_item_index).bom_item_type;

1257: l_item_index := OE_BULK_CACHE.Load_item(
1258: p_key1 => p_line_rec.inventory_item_id(p_index),
1259: p_key2 => p_line_rec.ship_from_org_id(p_index) );
1260:
1261: l_bom_item_type := OE_BULK_CACHE.G_Item_Tbl(l_item_index).bom_item_type;
1262: l_replenish_to_order_flag := OE_BULK_CACHE.G_Item_Tbl(l_item_index).replenish_to_order_flag;
1263:
1264: -- Check If Top Model Line
1265: IF ( l_bom_item_type = 1 AND

Line 1262: l_replenish_to_order_flag := OE_BULK_CACHE.G_Item_Tbl(l_item_index).replenish_to_order_flag;

1258: p_key1 => p_line_rec.inventory_item_id(p_index),
1259: p_key2 => p_line_rec.ship_from_org_id(p_index) );
1260:
1261: l_bom_item_type := OE_BULK_CACHE.G_Item_Tbl(l_item_index).bom_item_type;
1262: l_replenish_to_order_flag := OE_BULK_CACHE.G_Item_Tbl(l_item_index).replenish_to_order_flag;
1263:
1264: -- Check If Top Model Line
1265: IF ( l_bom_item_type = 1 AND
1266: p_line_rec.top_model_line_id(p_index) = p_line_rec.line_id(p_index) ) OR

Line 1296: := OE_BULK_CACHE.G_Item_Tbl(l_item_index).ordered_item;

1292:
1293: IF p_line_rec.ordered_item(p_index) is null THEN
1294: -- Set it from the Item Cache.
1295: p_line_rec.ordered_item(p_index)
1296: := OE_BULK_CACHE.G_Item_Tbl(l_item_index).ordered_item;
1297:
1298: END IF;
1299:
1300: