DBA Data[Home] [Help]

APPS.AP_PREPAY_PKG dependencies on AP_UTILITIES_PKG

Line 1773: l_apply_amount := AP_Utilities_PKG.AP_Round_Currency (

1769: l_debug_info := 'Round the Apply Amount';
1770: IF (G_LEVEL_STATEMENT >= G_CURRENT_RUNTIME_LEVEL) THEN
1771: FND_LOG.STRING(G_LEVEL_STATEMENT,G_MODULE_NAME||l_api_name,l_debug_info);
1772: END IF;
1773: l_apply_amount := AP_Utilities_PKG.AP_Round_Currency (
1774: l_apply_amount,
1775: l_std_inv_curr_code);
1776:
1777:

Line 1793: l_prepay_ln_base_amount := AP_Utilities_PKG.AP_Round_Currency(

1789:
1790: IF (l_std_inv_curr_code <> l_base_currency_code) THEN
1791:
1792: IF l_std_inv_xrate_type = 'User' THEN
1793: l_prepay_ln_base_amount := AP_Utilities_PKG.AP_Round_Currency(
1794: l_apply_amount* l_std_inv_xrate,
1795: l_base_currency_code);
1796: ELSE
1797: l_prepay_ln_base_amount := GL_Currency_API.Convert_Amount(

Line 2262: AP_Utilities_PKG.AP_Round_Currency(

2258:
2259: IF (l_std_inv_curr_code <> l_base_currency_code) THEN
2260: IF l_std_inv_xrate_type = 'User' THEN
2261: l_prepay_dist_info(l_loop_variable).PREPAY_BASE_AMOUNT :=
2262: AP_Utilities_PKG.AP_Round_Currency(
2263: l_prepay_dist_info(l_loop_variable).PREPAY_APPLY_AMOUNT *
2264: l_std_inv_xrate,
2265: l_base_currency_code);
2266: ELSE

Line 2279: AP_Utilities_PKG.AP_Round_Currency(

2275:
2276: -- Get the Base Amount at the Prepayment Invoice Exchange Rate
2277: IF l_ppay_inv_xrate_type = 'User' THEN
2278: l_prepay_dist_info(l_loop_variable).PREPAY_BASE_AMT_PPAY_XRATE :=
2279: AP_Utilities_PKG.AP_Round_Currency(
2280: l_prepay_dist_info(l_loop_variable).PREPAY_APPLY_AMOUNT *
2281: l_ppay_inv_xrate,
2282: l_base_currency_code);
2283: ELSE

Line 2296: AP_Utilities_PKG.AP_Round_Currency(

2292:
2293: -- Get the Base Amount at the Prepayment Payment Exchange Rate
2294: IF l_ppay_pay_xrate_type = 'User' THEN
2295: l_prepay_dist_info(l_loop_variable).PREPAY_BASE_AMT_PPAY_PAY_XRATE :=
2296: AP_Utilities_PKG.AP_Round_Currency(
2297: l_prepay_dist_info(l_loop_variable).PREPAY_APPLY_AMOUNT *
2298: l_ppay_pay_xrate,
2299: l_base_currency_code);
2300: ELSE

Line 2511: l_prepay_ln_base_amount := AP_Utilities_PKG.AP_Round_Currency(

2507: 'difference amount';
2508:
2509: IF (l_std_inv_curr_code <> l_base_currency_code) THEN
2510: IF l_std_inv_xrate_type = 'User' THEN
2511: l_prepay_ln_base_amount := AP_Utilities_PKG.AP_Round_Currency(
2512: l_apply_amount* l_std_inv_xrate,
2513: l_base_currency_code);
2514: ELSE
2515: l_prepay_ln_base_amount := GL_Currency_API.Convert_Amount(

Line 4376: ap_utilities_pkg.ap_round_currency(

4372: END IF;
4373:
4374: UPDATE ap_payment_schedules
4375: SET amount_remaining = (amount_remaining -
4376: ap_utilities_pkg.ap_round_currency(
4377: l_apply_amount_remaining,
4378: p_payment_currency_code)),
4379: payment_status_flag =
4380: DECODE(amount_remaining -

Line 4381: ap_utilities_pkg.ap_round_currency(

4377: l_apply_amount_remaining,
4378: p_payment_currency_code)),
4379: payment_status_flag =
4380: DECODE(amount_remaining -
4381: ap_utilities_pkg.ap_round_currency(
4382: l_apply_amount_remaining,
4383: p_payment_currency_code),
4384: 0,'Y',
4385: gross_amount, 'N',