DBA Data[Home] [Help]

APPS.OE_CHG_ORDER_PVT dependencies on OE_ORDER_UTIL

Line 395: OE_Order_Util.Return_Glb_Ent_Index(p_entity_code => 'LINE', p_entity_id => l_line_id, x_index => l_index_id, x_result => l_result, x_return_status => x_return_status);

391: IF p_line_rec.ordered_quantity <> FND_API.G_MISS_NUM AND
392: p_line_rec.ordered_quantity IS NOT NULL THEN
393:
394: -- bug 3443676, derive new ordered quantity from global picture
395: OE_Order_Util.Return_Glb_Ent_Index(p_entity_code => 'LINE', p_entity_id => l_line_id, x_index => l_index_id, x_result => l_result, x_return_status => x_return_status);
396:
397: IF l_result = FND_API.G_TRUE THEN
398: l_new_ordered_quantity := OE_Order_Util.G_Line_Tbl(l_index_id).ordered_quantity;
399: ELSE

Line 398: l_new_ordered_quantity := OE_Order_Util.G_Line_Tbl(l_index_id).ordered_quantity;

394: -- bug 3443676, derive new ordered quantity from global picture
395: OE_Order_Util.Return_Glb_Ent_Index(p_entity_code => 'LINE', p_entity_id => l_line_id, x_index => l_index_id, x_result => l_result, x_return_status => x_return_status);
396:
397: IF l_result = FND_API.G_TRUE THEN
398: l_new_ordered_quantity := OE_Order_Util.G_Line_Tbl(l_index_id).ordered_quantity;
399: ELSE
400: l_new_ordered_quantity := p_line_rec.ordered_quantity;
401: END IF;
402: