DBA Data[Home] [Help]

APPS.PN_SCHEDULES_ITEMS dependencies on FND_CURRENCY

Line 1907: fnd_currency.get_info(p_curr_code, l_precision, l_ext_precision, l_min_acct_unit);

1903:
1904: /* Get the correct precision for the currency so that the amount can be rounded off
1905: before inserting */
1906:
1907: fnd_currency.get_info(p_curr_code, l_precision, l_ext_precision, l_min_acct_unit);
1908:
1909: FOR rec IN org_cur LOOP
1910: l_org_id := rec.org_id;
1911: END LOOP;

Line 2436: fnd_currency.get_info(p_curr_code, l_precision, l_ext_precision, l_min_acct_unit);

2432: l_norm_amt := l_monthly_norm_amt;
2433:
2434: pnp_debug_pkg.log('create_normalize_items - normalize amt : '||TO_CHAR(l_norm_amt));
2435:
2436: fnd_currency.get_info(p_curr_code, l_precision, l_ext_precision, l_min_acct_unit);
2437:
2438: IF p_lease_context IN ('EXP', 'CONTERM') THEN
2439:
2440: --Fix for bug#14143342

Line 3457: fnd_currency.get_info( currency_code => rec.currency_code

3453: p_cash_est_amt => l_cash_est_amt);
3454:
3455: /* update the cash amount for the schedule */
3456: FOR rec IN currency_cur LOOP
3457: fnd_currency.get_info( currency_code => rec.currency_code
3458: ,precision => l_precision
3459: ,ext_precision => l_ext_precision
3460: ,min_acct_unit => l_min_acct_unit);
3461: END LOOP;

Line 6107: fnd_currency.get_info( currency_code => p_payment_term_rec.currency_code

6103: pnp_debug_pkg.log('EXTEND_PAYMENT_TERM IN: p_new_start_date : '||p_new_start_date);
6104: pnp_debug_pkg.log('EXTEND_PAYMENT_TERM IN: p_new_end_date : '||p_new_end_date);
6105:
6106: /* get currency info for rounding */
6107: fnd_currency.get_info( currency_code => p_payment_term_rec.currency_code
6108: ,precision => l_precision
6109: ,ext_precision => l_ext_precision
6110: ,min_acct_unit => l_min_acct_unit);
6111:

Line 6918: RETURN LPAD(TO_CHAR(p_Amount, Fnd_Currency.Get_Format_Mask(p_currency_code, 20)),15); --Bug 13641575

6914: RETURN VARCHAR2
6915: IS
6916: BEGIN
6917:
6918: RETURN LPAD(TO_CHAR(p_Amount, Fnd_Currency.Get_Format_Mask(p_currency_code, 20)),15); --Bug 13641575
6919:
6920: EXCEPTION
6921:
6922: WHEN OTHERS THEN

Line 7238: fnd_currency.get_info ( currency_code => rec.currency_code

7234:
7235: pnp_debug_pkg.log('MINI-RETRO - CON - MAIN - Updating start/end date of Payment Terms');
7236:
7237: FOR rec IN currency_cur LOOP
7238: fnd_currency.get_info ( currency_code => rec.currency_code
7239: ,precision => l_precision
7240: ,ext_precision => l_ext_precision
7241: ,min_acct_unit => l_min_acct_unit);
7242: END LOOP;

Line 7300: fnd_currency.get_info( currency_code => rec.currency_code

7296: BEGIN
7297: pnp_debug_pkg.log('update_cash_item +Start+ (-)');
7298:
7299: FOR rec IN currency_cur LOOP
7300: fnd_currency.get_info( currency_code => rec.currency_code
7301: ,precision => l_precision
7302: ,ext_precision => l_ext_precision
7303: ,min_acct_unit => l_min_acct_unit);
7304: END LOOP;