DBA Data[Home] [Help]

APPS.AR_CC_LOCKBOX dependencies on FND_CURRENCY

Line 154: fnd_currency.Get_Info(p_inv_curr_code,

150: ELSE
151:
152: /* Populate "starting" values */
153: debug1('populate starting values...');
154: fnd_currency.Get_Info(p_inv_curr_code,
155: l_precision,
156: l_extended_precision,
157: l_mau);
158: debug1('populate ln_amount_applied');

Line 166: fnd_currency.Get_Info(p_rec_curr_code,

162: ELSE
163: ln_amount_applied := ROUND(p_amount_applied, l_precision);
164: END IF;
165:
166: fnd_currency.Get_Info(p_rec_curr_code,
167: l_precision,
168: l_extended_precision,
169: l_mau);
170: debug1('populate ln_amount_applied_from .. ');

Line 264: fnd_currency.Get_Info(p_inv_curr_code,

260: THEN
261: null;
262: ELSE
263:
264: fnd_currency.Get_Info(p_inv_curr_code,
265: l_precision,
266: l_extended_precision,
267: l_mau);
268: IF l_mau IS NOT NULL

Line 1011: fnd_currency.Get_Info(l_invoice_currency_code1,

1007: /* Bug:1513671 we know the invoice currency code so we can now format the
1008: amount applied if we need to */
1009:
1010: IF (p_format_amount1 = 'Y') THEN
1011: fnd_currency.Get_Info(l_invoice_currency_code1,
1012: l_precision,
1013: l_extended_precision,
1014: l_mau);
1015: l_amount_applied1 := round(l_amount_applied1 / power(10, l_precision),

Line 1217: fnd_currency.Get_Info(

1213:
1214: IF (amt_applied_from_tc =
1215: l_amount_applied_from1) THEN
1216: IF (l_format_amount1 = 'Y') THEN
1217: fnd_currency.Get_Info(
1218: l_invoice_currency_code1,
1219: l_precision,
1220: l_extended_precision,
1221: l_mau);

Line 1291: fnd_currency.Get_Info(

1287:
1288: IF (amt_applied_from_tc =
1289: l_amount_applied_from1) THEN
1290: IF (l_format_amount1 = 'Y') THEN
1291: fnd_currency.Get_Info(
1292: l_invoice_currency_code1,
1293: l_precision,
1294: l_extended_precision,
1295: l_mau);

Line 1374: fnd_currency.Get_Info(l_invoice_currency_code1,

1370: WHERE rowid = l_rowid;
1371: END IF;
1372: ELSE
1373: IF l_format_amount1 = 'Y' THEN
1374: fnd_currency.Get_Info(l_invoice_currency_code1,
1375: l_precision,
1376: l_extended_precision,
1377: l_mau);
1378: l_unformat_amount := l_amount_applied_from1 * power(10, l_precision);

Line 1544: fnd_currency.Get_Info(l_invoice_currency_code2,

1540: /* Bug:1513671 we know the invoice currency code so we can now format the
1541: amount applied if we need to */
1542:
1543: IF (p_format_amount2 = 'Y') THEN
1544: fnd_currency.Get_Info(l_invoice_currency_code2,
1545: l_precision,
1546: l_extended_precision,
1547: l_mau);
1548: l_amount_applied2 := round(l_amount_applied2 / power(10, l_precision),

Line 1742: fnd_currency.Get_Info(

1738:
1739: IF (amt_applied_from_tc =
1740: l_amount_applied_from2) THEN
1741: IF (l_format_amount2 = 'Y') THEN
1742: fnd_currency.Get_Info(
1743: l_invoice_currency_code2,
1744: l_precision,
1745: l_extended_precision,
1746: l_mau);

Line 1815: fnd_currency.Get_Info(

1811:
1812: IF (amt_applied_from_tc =
1813: l_amount_applied_from2 ) THEN
1814: IF (l_format_amount2 = 'Y') THEN
1815: fnd_currency.Get_Info(
1816: l_invoice_currency_code2,
1817: l_precision,
1818: l_extended_precision,
1819: l_mau);

Line 1899: fnd_currency.Get_Info(l_invoice_currency_code2,

1895: WHERE rowid = l_rowid;
1896: END IF;
1897: ELSE
1898: IF l_format_amount2 = 'Y' THEN
1899: fnd_currency.Get_Info(l_invoice_currency_code2,
1900: l_precision,
1901: l_extended_precision,
1902: l_mau);
1903: l_unformat_amount := l_amount_applied_from2 * power(10, l_precision);

Line 2067: fnd_currency.Get_Info(l_invoice_currency_code3,

2063: /* Bug:1513671 we know the invoice currency code so we can now format the
2064: amount applied if we need to */
2065:
2066: IF (p_format_amount3 = 'Y') THEN
2067: fnd_currency.Get_Info(l_invoice_currency_code3,
2068: l_precision,
2069: l_extended_precision,
2070: l_mau);
2071: l_amount_applied3 := round(l_amount_applied3 / power(10, l_precision),

Line 2272: fnd_currency.Get_Info(

2268: IF (amt_applied_from_tc =
2269: l_amount_applied_from3 ) THEN
2270: IF (l_format_amount3 = 'Y') THEN
2271:
2272: fnd_currency.Get_Info(
2273: l_invoice_currency_code3,
2274: l_precision,
2275: l_extended_precision,
2276: l_mau);

Line 2344: fnd_currency.Get_Info(

2340: IF (amt_applied_from_tc =
2341: l_amount_applied_from3 ) THEN
2342: IF (l_format_amount3 = 'Y') THEN
2343:
2344: fnd_currency.Get_Info(
2345: l_invoice_currency_code3,
2346: l_precision,
2347: l_extended_precision,
2348: l_mau);

Line 2428: fnd_currency.Get_Info(l_invoice_currency_code3,

2424: WHERE rowid = l_rowid;
2425: END IF;
2426: ELSE
2427: IF l_format_amount3 = 'Y' THEN
2428: fnd_currency.Get_Info(l_invoice_currency_code3,
2429: l_precision,
2430: l_extended_precision,
2431: l_mau);
2432: l_unformat_amount := l_amount_applied_from3 * power(10, l_precision);

Line 2597: fnd_currency.Get_Info(l_invoice_currency_code4,

2593: /* Bug:1513671 we know the invoice currency code so we can now format the
2594: amount applied if we need to */
2595:
2596: IF (p_format_amount4 = 'Y') THEN
2597: fnd_currency.Get_Info(l_invoice_currency_code4,
2598: l_precision,
2599: l_extended_precision,
2600: l_mau);
2601: l_amount_applied4 := round(l_amount_applied4 / power(10, l_precision),

Line 2800: fnd_currency.Get_Info(

2796:
2797: IF (amt_applied_from_tc =
2798: l_amount_applied_from4 ) THEN
2799: IF (l_format_amount4 = 'Y') THEN
2800: fnd_currency.Get_Info(
2801: l_invoice_currency_code4,
2802: l_precision,
2803: l_extended_precision,
2804: l_mau);

Line 2871: fnd_currency.Get_Info(

2867:
2868: IF (amt_applied_from_tc =
2869: l_amount_applied_from4 ) THEN
2870: IF (l_format_amount4 = 'Y') THEN
2871: fnd_currency.Get_Info(
2872: l_invoice_currency_code4,
2873: l_precision,
2874: l_extended_precision,
2875: l_mau);

Line 2954: fnd_currency.Get_Info(l_invoice_currency_code4,

2950: WHERE rowid = l_rowid;
2951: END IF;
2952: ELSE
2953: IF l_format_amount4 = 'Y' THEN
2954: fnd_currency.Get_Info(l_invoice_currency_code4,
2955: l_precision,
2956: l_extended_precision,
2957: l_mau);
2958: l_unformat_amount := l_amount_applied_from4 * power(10, l_precision);

Line 3123: fnd_currency.Get_Info(l_invoice_currency_code5,

3119: /* Bug:1513671 we know the invoice currency code so we can now format the
3120: amount applied if we need to */
3121:
3122: IF (p_format_amount5 = 'Y') THEN
3123: fnd_currency.Get_Info(l_invoice_currency_code5,
3124: l_precision,
3125: l_extended_precision,
3126: l_mau);
3127: l_amount_applied5 := round(l_amount_applied5 / power(10, l_precision),

Line 3325: fnd_currency.Get_Info(

3321:
3322: IF (amt_applied_from_tc =
3323: l_amount_applied_from5 ) THEN
3324: IF (l_format_amount5 = 'Y') THEN
3325: fnd_currency.Get_Info(
3326: l_invoice_currency_code5,
3327: l_precision,
3328: l_extended_precision,
3329: l_mau);

Line 3396: fnd_currency.Get_Info(

3392:
3393: IF (amt_applied_from_tc =
3394: l_amount_applied_from5 ) THEN
3395: IF (l_format_amount5 = 'Y') THEN
3396: fnd_currency.Get_Info(
3397: l_invoice_currency_code5,
3398: l_precision,
3399: l_extended_precision,
3400: l_mau);

Line 3479: fnd_currency.Get_Info(l_invoice_currency_code5,

3475: WHERE rowid = l_rowid;
3476: END IF;
3477: ELSE
3478: IF l_format_amount5 = 'Y' THEN
3479: fnd_currency.Get_Info(l_invoice_currency_code5,
3480: l_precision,
3481: l_extended_precision,
3482: l_mau);
3483: l_unformat_amount := l_amount_applied_from5 * power(10, l_precision);

Line 3648: fnd_currency.Get_Info(l_invoice_currency_code6,

3644: /* Bug:1513671 we know the invoice currency code so we can now format the
3645: amount applied if we need to */
3646:
3647: IF (p_format_amount6 = 'Y') THEN
3648: fnd_currency.Get_Info(l_invoice_currency_code6,
3649: l_precision,
3650: l_extended_precision,
3651: l_mau);
3652: l_amount_applied6 := round(l_amount_applied6 / power(10, l_precision),

Line 3850: fnd_currency.Get_Info(

3846:
3847: IF (amt_applied_from_tc =
3848: l_amount_applied_from6 ) THEN
3849: IF (l_format_amount6 = 'Y') THEN
3850: fnd_currency.Get_Info(
3851: l_invoice_currency_code6,
3852: l_precision,
3853: l_extended_precision,
3854: l_mau);

Line 3920: fnd_currency.Get_Info(

3916:
3917: IF (amt_applied_from_tc =
3918: l_amount_applied_from6 ) THEN
3919: IF (l_format_amount6 = 'Y') THEN
3920: fnd_currency.Get_Info(
3921: l_invoice_currency_code6,
3922: l_precision,
3923: l_extended_precision,
3924: l_mau);

Line 4003: fnd_currency.Get_Info(l_invoice_currency_code6,

3999: WHERE rowid = l_rowid;
4000: END IF;
4001: ELSE
4002: IF l_format_amount6 = 'Y' THEN
4003: fnd_currency.Get_Info(l_invoice_currency_code6,
4004: l_precision,
4005: l_extended_precision,
4006: l_mau);
4007: l_unformat_amount := l_amount_applied_from6 * power(10, l_precision);

Line 4172: fnd_currency.Get_Info(l_invoice_currency_code7,

4168: /* Bug:1513671 we know the invoice currency code so we can now format the
4169: amount applied if we need to */
4170:
4171: IF (p_format_amount7 = 'Y') THEN
4172: fnd_currency.Get_Info(l_invoice_currency_code7,
4173: l_precision,
4174: l_extended_precision,
4175: l_mau);
4176: l_amount_applied7 := round(l_amount_applied7 / power(10, l_precision),

Line 4374: fnd_currency.Get_Info(

4370:
4371: IF (amt_applied_from_tc =
4372: l_amount_applied_from7 ) THEN
4373: IF (l_format_amount7 = 'Y') THEN
4374: fnd_currency.Get_Info(
4375: l_invoice_currency_code7,
4376: l_precision,
4377: l_extended_precision,
4378: l_mau);

Line 4445: fnd_currency.Get_Info(

4441:
4442: IF (amt_applied_from_tc =
4443: l_amount_applied_from7 ) THEN
4444: IF (l_format_amount7 = 'Y') THEN
4445: fnd_currency.Get_Info(
4446: l_invoice_currency_code7,
4447: l_precision,
4448: l_extended_precision,
4449: l_mau);

Line 4528: fnd_currency.Get_Info(l_invoice_currency_code7,

4524: WHERE rowid = l_rowid;
4525: END IF;
4526: ELSE
4527: IF l_format_amount7 = 'Y' THEN
4528: fnd_currency.Get_Info(l_invoice_currency_code7,
4529: l_precision,
4530: l_extended_precision,
4531: l_mau);
4532: l_unformat_amount := l_amount_applied_from7 * power(10, l_precision);

Line 4697: fnd_currency.Get_Info(l_invoice_currency_code8,

4693: /* Bug:1513671 we know the invoice currency code so we can now format the
4694: amount applied if we need to */
4695:
4696: IF (p_format_amount8 = 'Y') THEN
4697: fnd_currency.Get_Info(l_invoice_currency_code8,
4698: l_precision,
4699: l_extended_precision,
4700: l_mau);
4701: l_amount_applied8 := round(l_amount_applied8 / power(10, l_precision),

Line 4900: fnd_currency.Get_Info(

4896:
4897: IF (amt_applied_from_tc =
4898: l_amount_applied_from8 ) THEN
4899: IF (l_format_amount8 = 'Y') THEN
4900: fnd_currency.Get_Info(
4901: l_invoice_currency_code8,
4902: l_precision,
4903: l_extended_precision,
4904: l_mau);

Line 4971: fnd_currency.Get_Info(

4967:
4968: IF (amt_applied_from_tc =
4969: l_amount_applied_from8 ) THEN
4970: IF (l_format_amount8 = 'Y') THEN
4971: fnd_currency.Get_Info(
4972: l_invoice_currency_code8,
4973: l_precision,
4974: l_extended_precision,
4975: l_mau);

Line 5054: fnd_currency.Get_Info(l_invoice_currency_code8,

5050: WHERE rowid = l_rowid;
5051: END IF;
5052: ELSE
5053: IF l_format_amount8 = 'Y' THEN
5054: fnd_currency.Get_Info(l_invoice_currency_code8,
5055: l_precision,
5056: l_extended_precision,
5057: l_mau);
5058: l_unformat_amount := l_amount_applied_from8 * power(10, l_precision);

Line 5127: fnd_currency.Get_Info(

5123: debug1('p_amount_applied = ' || to_char(p_amount_applied));
5124: debug1('p_trans_to_receipt_rate = ' || to_char(p_trans_to_receipt_rate));
5125: debug1('p curr code = ' || p_currency_code);
5126:
5127: fnd_currency.Get_Info(
5128: p_currency_code,
5129: l_precision,
5130: l_extended_precision,
5131: l_mau);

Line 5205: fnd_currency.Get_Info(

5201: debug1('p_amount_applied_from = ' || to_char(p_amount_applied_from));
5202: debug1('p_trans_to_receipt_rate = ' || to_char(p_trans_to_receipt_rate));
5203: debug1('p inv curr code = ' || p_invoice_currency_code);
5204:
5205: fnd_currency.Get_Info(
5206: p_invoice_currency_code,
5207: l_precision,
5208: l_extended_precision,
5209: l_mau);

Line 5447: fnd_currency.Get_Info(

5443: debug1('p_amount_applied = ' || to_char(p_amount_applied));
5444: debug1('p_trans_to_receipt_rate = ' || to_char(p_trans_to_receipt_rate));
5445: debug1('p curr code = ' || p_currency_code);
5446:
5447: fnd_currency.Get_Info(
5448: p_currency_code,
5449: l_precision,
5450: l_extended_precision,
5451: l_mau);

Line 5527: fnd_currency.Get_Info(

5523: debug1('p_amount_applied_from = ' || to_char(p_amount_applied_from));
5524: debug1('p_trans_to_receipt_rate = ' || to_char(p_trans_to_receipt_rate));
5525: debug1('p inv curr code = ' || p_invoice_currency_code);
5526:
5527: fnd_currency.Get_Info(
5528: p_invoice_currency_code,
5529: l_precision,
5530: l_extended_precision,
5531: l_mau);