DBA Data[Home] [Help]

APPS.AP_PAY_INVOICE_PKG dependencies on GL_CURRENCY_API

Line 487: gl_currency_api.convert_amount (

483: *P_exchange_rate),P_base_currency_code);
484: else
485: If (p_exchange_rate is not null) then
486: P_payment_base_amount :=
487: gl_currency_api.convert_amount (
488: p_currency_code,
489: p_base_currency_code,
490: p_exchange_date,
491: p_exchange_rate_type,

Line 499: gl_currency_api.convert_amount (

495: end if;
496:
497: if (c_inv_currency_code = P_base_currency_code) then
498: P_invoice_base_amount :=
499: gl_currency_api.convert_amount (
500: p_currency_code,
501: p_base_currency_code,
502: AI_payment_cross_rate_date,
503: AI_payment_cross_rate_type,

Line 517: -- Commented the call to 'gl_currency_api' and added the

513: -- exchange rate...Adding the If stmt for any corner case missed.
514: If (AI_exchange_rate is not null) then
515:
516: -- Bug fix: 969285
517: -- Commented the call to 'gl_currency_api' and added the
518: -- call to 'ap_utilities_pkg'
519:
520: P_invoice_base_amount:= ap_utilities_pkg.ap_round_currency
521: (((P_amount/PS_payment_cross_rate)* AI_exchange_rate),

Line 525: gl_currency_api.convert_amount (

521: (((P_amount/PS_payment_cross_rate)* AI_exchange_rate),
522: P_base_currency_code);
523:
524: /* P_invoice_base_amount :=
525: gl_currency_api.convert_amount (
526: p_currency_code,
527: p_base_currency_code,
528: AI_exchange_date,
529: AI_exchange_rate_type,