DBA Data[Home] [Help]

APPS.AP_INTEREST_INVOICE_PKG dependencies on AP_UTILITIES_PKG

Line 711: P_int_invoice_base_amount := ap_utilities_pkg.ap_round_currency(

707: -- Round base_amount
708: ----------------------------------------------------------------------------
709:
710: debug_info := 'Round the P_int_invoice_base_amount';
711: P_int_invoice_base_amount := ap_utilities_pkg.ap_round_currency(
712: int_invoice_base_amount, P_currency_code);
713:
714: P_int_payment_base_amount := ap_utilities_pkg.ap_round_currency(
715: int_payment_base_amount, P_currency_code);

Line 714: P_int_payment_base_amount := ap_utilities_pkg.ap_round_currency(

710: debug_info := 'Round the P_int_invoice_base_amount';
711: P_int_invoice_base_amount := ap_utilities_pkg.ap_round_currency(
712: int_invoice_base_amount, P_currency_code);
713:
714: P_int_payment_base_amount := ap_utilities_pkg.ap_round_currency(
715: int_payment_base_amount, P_currency_code);
716:
717: EXCEPTION
718: WHEN OTHERS THEN

Line 1323: SELECT ap_utilities_pkg.ap_round_currency

1319: -- This cursor has the logic to prorate interest invoice amount across
1320: -- 'ITEM' lines of associated overdue invoice distribution lines.
1321:
1322: CURSOR c_prorate_int_inv IS
1323: SELECT ap_utilities_pkg.ap_round_currency
1324: (((amount * P_interest_amount)/l_proration_divisor),P_invoice_currency_code)
1325: prorated_dist_amount ,
1326: ap_utilities_pkg.ap_round_currency(
1327: nvl(P_exchange_rate,1) *

Line 1326: ap_utilities_pkg.ap_round_currency(

1322: CURSOR c_prorate_int_inv IS
1323: SELECT ap_utilities_pkg.ap_round_currency
1324: (((amount * P_interest_amount)/l_proration_divisor),P_invoice_currency_code)
1325: prorated_dist_amount ,
1326: ap_utilities_pkg.ap_round_currency(
1327: nvl(P_exchange_rate,1) *
1328: ap_utilities_pkg.ap_round_currency
1329: (((amount * P_interest_amount)/l_proration_divisor),P_invoice_currency_code) -- amount rounded
1330: / nvl(P_payment_cross_rate, 1),

Line 1328: ap_utilities_pkg.ap_round_currency

1324: (((amount * P_interest_amount)/l_proration_divisor),P_invoice_currency_code)
1325: prorated_dist_amount ,
1326: ap_utilities_pkg.ap_round_currency(
1327: nvl(P_exchange_rate,1) *
1328: ap_utilities_pkg.ap_round_currency
1329: (((amount * P_interest_amount)/l_proration_divisor),P_invoice_currency_code) -- amount rounded
1330: / nvl(P_payment_cross_rate, 1),
1331: P_base_currency_code) prorated_dist_base_amt,
1332: dist_code_combination_id,

Line 2454: P_interest_amount := ap_utilities_pkg.ap_round_currency(

2450: --------------------------
2451:
2452: debug_info := 'Round the interest invoice_amount';
2453:
2454: P_interest_amount := ap_utilities_pkg.ap_round_currency(
2455: C_interest_amount, P_currency_code);
2456:
2457: P_due_date := C_due_date;
2458: