DBA Data[Home] [Help]

APPS.GMF_GET_TRANSFER_PRICE_PUB dependencies on INV_TRANSACTION_FLOW_PUB

Line 283: INV_TRANSACTION_FLOW_PUB.get_transfer_price(

279: --
280: --===================================================================
281: IF (p_transfer_type = 'INTCOM')
282: THEN
283: INV_TRANSACTION_FLOW_PUB.get_transfer_price(
284: x_return_status => x_return_status
285: , x_msg_data => x_msg_data
286: , x_msg_count => x_msg_count
287:

Line 308: print_debug(l_api_name || ': return status from INV_TRANSACTION_FLOW_PUB.get_transfer_price: ' || x_return_status);

304: , p_order_line_id => p_transaction_id
305: -- , p_process_discrete_xfer_flag => 'Y' Bug 5171637: replaced with above line.
306: );
307:
308: print_debug(l_api_name || ': return status from INV_TRANSACTION_FLOW_PUB.get_transfer_price: ' || x_return_status);
309: IF (x_return_status <> FND_API.G_RET_STS_SUCCESS)
310: THEN
311:
312: --

Line 361: print_debug('INV_TRANSACTION_FLOW_PUB.get_transfer_price: Error = '|| x_msg_data );

357: --
358:
359: x_msg_data := FND_MESSAGE.get;
360: IF (l_debug = 1) THEN
361: print_debug('INV_TRANSACTION_FLOW_PUB.get_transfer_price: Error = '|| x_msg_data );
362: END IF;
363: RAISE FND_API.G_EXC_ERROR;
364:
365: ELSE

Line 369: print_debug('INV_TRANSACTION_FLOW_PUB.get_transfer_price: Transfer Price is NULL: '|| x_msg_data );

365: ELSE
366:
367: IF l_transfer_price IS NULL
368: THEN
369: print_debug('INV_TRANSACTION_FLOW_PUB.get_transfer_price: Transfer Price is NULL: '|| x_msg_data );
370: RAISE e_transfer_price_null_error;
371: END IF;
372:
373: END IF;

Line 609: l_curr_rate := INV_TRANSACTION_FLOW_PUB.convert_currency (

605: THEN
606: print_debug(l_api_name || ': Now doing currency conversion from priceList Currency: ' ||
607: l_pricelist_currency || ' to functional currency, if necessary');
608:
609: l_curr_rate := INV_TRANSACTION_FLOW_PUB.convert_currency (
610: p_org_id => g_from_ou
611: , p_transfer_price => 1
612: , p_currency_code => l_pricelist_currency
613: , p_transaction_date => sysdate

Line 731: -- i.e., INV_TRANSACTION_FLOW_PUB

727: -- PURPOSE: Pseudo code
728: -- Begin
729: -- if (transfer type = 'INTCOM' then
730: -- call transfer_price api for inter company
731: -- i.e., INV_TRANSACTION_FLOW_PUB
732: -- return;
733: -- end if;
734: --
735: -- call the user hook

Line 969: -- i.e., INV_TRANSACTION_FLOW_PUB

965: -- PURPOSE: Pseudo code
966: -- Begin
967: -- if (transfer type = 'INTCOM' then
968: -- call transfer_price api for inter company
969: -- i.e., INV_TRANSACTION_FLOW_PUB
970: -- return;
971: -- end if;
972: --
973: -- call the user hook