DBA Data[Home] [Help]

APPS.OE_LINE_UTIL dependencies on INV_CUSTOMER_ITEM_GRP

Line 17088: 1.call INV_CUSTOMER_ITEM_GRP.CI_Attribute_Value

17084: l_error_message VARCHAR2(2000);
17085: BEGIN
17086:
17087: /*
17088: 1.call INV_CUSTOMER_ITEM_GRP.CI_Attribute_Value
17089: to get the inventory_item_id
17090: given the customer_item_id, and the new ship_from_org_id.
17091:
17092: 2.check the value of the inventory_item_id returned:

Line 17138: INV_CUSTOMER_ITEM_GRP.CI_Attribute_Value(

17134: oe_debug_pub.add('p_x_line_rec.line_category_code = '||p_x_line_rec.line_category_code);
17135: IF p_x_line_rec.line_category_code = 'RETURN' THEN
17136: oe_debug_pub.add('Its a Return Order Line ');
17137:
17138: INV_CUSTOMER_ITEM_GRP.CI_Attribute_Value(
17139: Z_Customer_Item_Id => p_x_line_rec.ordered_item_id
17140: , Z_Customer_Id => p_x_line_rec.sold_to_org_id
17141: , Z_Address_Id => l_address_id
17142: , Z_Organization_Id => nvl(p_x_line_rec.ship_from_org_id, OE_Sys_Parameters.value('MASTER_ORGANIZATION_ID'))

Line 17155: INV_CUSTOMER_ITEM_GRP.CI_Attribute_Value(

17151: );
17152: ELSE
17153: OE_DEBUG_PUB.ADD('Its a Normal Order Line');
17154:
17155: INV_CUSTOMER_ITEM_GRP.CI_Attribute_Value(
17156: Z_Customer_Item_Id => p_x_line_rec.ordered_item_id
17157: , Z_Customer_Id => p_x_line_rec.sold_to_org_id
17158: , Z_Address_Id => l_address_id
17159: , Z_Organization_Id => nvl(p_x_line_rec.ship_from_org_id, OE_Sys_Parameters.value('MASTER_ORGANIZATION_ID'))