DBA Data[Home] [Help]

APPS.AP_IMPORT_INVOICES_PKG dependencies on AP_UTILITIES_PKG

Line 1969: ap_utilities_pkg.get_gl_date_and_period_1

1965: END IF;
1966:
1967: /* l_invoice_rec.gl_date := l_invoice_rec.invoice_date; Commented for bug#12356854 */
1968: /* Added for bug#12356854 Start */
1969: ap_utilities_pkg.get_gl_date_and_period_1
1970: ( l_invoice_rec.invoice_date,
1971: NULL,
1972: l_period_name,
1973: l_invoice_rec.gl_date,

Line 3086: ap_utilities_pkg.ap_round_currency(

3082: l_supplier_hold_reason,
3083: l_invoice_amount_limit,
3084: /*bug fix:3022381 Added the NVL condition*/
3085: nvl(l_invoice_rec.no_xrate_base_amount, -- Bug 4692091. Added ap_round_currency
3086: ap_utilities_pkg.ap_round_currency(
3087: l_invoice_rec.invoice_amount*nvl(l_invoice_rec.exchange_rate,1),
3088: l_invoice_rec.invoice_currency_code)),
3089: l_invoice_rec.last_updated_by,
3090: current_calling_sequence ) <> TRUE) THEN

Line 3702: l_base_exclusive_tax_amount :=AP_UTILITIES_PKG.AP_ROUND_CURRENCY(

3698: END IF;
3699:
3700: IF ( l_exchange_rate IS NOT NULL
3701: AND AP_IMPORT_INVOICES_PKG.tab_get_info_rec(l_invoice_rec.org_id).p_base_currency_code IS NOT NULL ) THEN
3702: l_base_exclusive_tax_amount :=AP_UTILITIES_PKG.AP_ROUND_CURRENCY(
3703: l_exclusive_tax_amount * l_exchange_rate,
3704: AP_IMPORT_INVOICES_PKG.tab_get_info_rec(l_invoice_rec.org_id).p_base_currency_code);
3705: END IF;
3706: END IF;