DBA Data[Home] [Help]

APPS.PN_SCHEDULES_ITEMS dependencies on FND_CURRENCY

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

1554:
1555: /* Get the correct precision for the currency so that the amount can be rounded off
1556: before inserting */
1557:
1558: fnd_currency.get_info(p_curr_code, l_precision, l_ext_precision, l_min_acct_unit);
1559:
1560: FOR rec IN org_cur LOOP
1561: l_org_id := rec.org_id;
1562: END LOOP;

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

1927: l_norm_amt := l_monthly_norm_amt;
1928:
1929: pnp_debug_pkg.log('create_normalize_items - normalize amt : '||TO_CHAR(l_norm_amt));
1930:
1931: fnd_currency.get_info(p_curr_code, l_precision, l_ext_precision, l_min_acct_unit);
1932:
1933: IF p_lease_context IN ('EXP', 'CONTERM') THEN
1934:
1935: DELETE pn_payment_items_all ppi

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

2733: p_cash_est_amt => l_cash_est_amt);
2734:
2735: /* update the cash amount for the schedule */
2736: FOR rec IN currency_cur LOOP
2737: fnd_currency.get_info( currency_code => rec.currency_code
2738: ,precision => l_precision
2739: ,ext_precision => l_ext_precision
2740: ,min_acct_unit => l_min_acct_unit);
2741: END LOOP;

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

5176: pnp_debug_pkg.log('EXTEND_PAYMENT_TERM IN: p_new_start_date : '||p_new_start_date);
5177: pnp_debug_pkg.log('EXTEND_PAYMENT_TERM IN: p_new_end_date : '||p_new_end_date);
5178:
5179: /* get currency info for rounding */
5180: fnd_currency.get_info( currency_code => p_payment_term_rec.currency_code
5181: ,precision => l_precision
5182: ,ext_precision => l_ext_precision
5183: ,min_acct_unit => l_min_acct_unit);
5184:

Line 5938: RETURN LPAD(TO_CHAR(p_Amount, Fnd_Currency.Get_Format_Mask(p_currency_code, 20)),12);

5934: RETURN VARCHAR2
5935: IS
5936: BEGIN
5937:
5938: RETURN LPAD(TO_CHAR(p_Amount, Fnd_Currency.Get_Format_Mask(p_currency_code, 20)),12);
5939:
5940: EXCEPTION
5941:
5942: WHEN OTHERS THEN

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

6248:
6249: pnp_debug_pkg.log('MINI-RETRO - CON - MAIN - Updating start/end date of Payment Terms');
6250:
6251: FOR rec IN currency_cur LOOP
6252: fnd_currency.get_info ( currency_code => rec.currency_code
6253: ,precision => l_precision
6254: ,ext_precision => l_ext_precision
6255: ,min_acct_unit => l_min_acct_unit);
6256: END LOOP;

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

6310: BEGIN
6311: pnp_debug_pkg.log('update_cash_item +Start+ (-)');
6312:
6313: FOR rec IN currency_cur LOOP
6314: fnd_currency.get_info( currency_code => rec.currency_code
6315: ,precision => l_precision
6316: ,ext_precision => l_ext_precision
6317: ,min_acct_unit => l_min_acct_unit);
6318: END LOOP;