DBA Data[Home] [Help]

APPS.AP_IMPORT_UTILITIES_PKG dependencies on AP_UTILITIES_PKG

Line 274: ap_utilities_pkg.ap_round_currency ((l_match_qty * (p_price * l_uom_conv_rate)), p_invoice_currency);

270: If (l_unbilled_qty < l_remain_qty) Then
271: l_match_qty := l_unbilled_qty;
272:
273: l_match_amt :=
274: ap_utilities_pkg.ap_round_currency ((l_match_qty * (p_price * l_uom_conv_rate)), p_invoice_currency);
275:
276: debug_info := '(Receipt Match 3a) Call the receipt match package ';
277: If AP_IMPORT_INVOICES_PKG.g_debug_switch = 'Y' then
278: AP_IMPORT_UTILITIES_PKG.Print(AP_IMPORT_INVOICES_PKG.g_debug_switch,debug_info);

Line 304: ap_utilities_pkg.ap_round_currency ((l_match_qty * (p_price * l_uom_conv_rate)), p_invoice_currency);

300: Else
301: l_match_qty := l_remain_qty_rcv_uom;
302:
303: l_match_amt :=
304: ap_utilities_pkg.ap_round_currency ((l_match_qty * (p_price * l_uom_conv_rate)), p_invoice_currency);
305:
306: p_invoice_lines_tab(l_index).rcv_transaction_id:= l_rcv_txn_id;
307:
308: End if;

Line 405: ap_utilities_pkg.ap_round_currency

401: End if;
402:
403: l_match_qty := l_remain_qty;
404: l_match_amt :=
405: ap_utilities_pkg.ap_round_currency
406: (
407: (l_match_qty * p_price),
408: p_invoice_currency
409: );

Line 543: ap_utilities_pkg.ap_round_currency ( (l_match_qty * p_price), p_invoice_currency);

539: If (abs(l_remain_qty) > l_billed_qty) Then
540: l_match_qty := -1 * l_billed_qty;
541:
542: l_match_amt :=
543: ap_utilities_pkg.ap_round_currency ( (l_match_qty * p_price), p_invoice_currency);
544:
545: p_invoice_lines_tab(p_invoice_lines_tab.LAST+1):= p_invoice_lines_tab(l_index);
546:
547: p_invoice_lines_tab(p_invoice_lines_tab.LAST).amount := p_invoice_lines_tab(l_index).amount - l_match_amt;

Line 569: ap_utilities_pkg.ap_round_currency ( (l_match_qty * p_price), p_invoice_currency);

565: Else
566: l_match_qty := l_remain_qty;
567:
568: l_match_amt :=
569: ap_utilities_pkg.ap_round_currency ( (l_match_qty * p_price), p_invoice_currency);
570:
571: p_invoice_lines_tab(l_index).rcv_transaction_id:= l_rcv_txn_id;
572:
573: End if;

Line 674: AP_UTILITIES_PKG.AP_GET_MESSAGE(l_matching_error);

670: AP_IMPORT_UTILITIES_PKG.Print(AP_IMPORT_INVOICES_PKG.g_debug_switch,debug_info);
671: End if;
672: -- Get Error from Matching Package
673:
674: AP_UTILITIES_PKG.AP_GET_MESSAGE(l_matching_error);
675: If AP_IMPORT_INVOICES_PKG.g_debug_switch = 'Y' then
676: AP_IMPORT_UTILITIES_PKG.Print(AP_IMPORT_INVOICES_PKG.g_debug_switch,l_matching_error);
677: end if;
678: