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 1017: fnd_currency.Get_Info(l_invoice_currency_code1,

1013: /* Bug:1513671 we know the invoice currency code so we can now format the
1014: amount applied if we need to */
1015:
1016: IF (p_format_amount1 = 'Y') THEN
1017: fnd_currency.Get_Info(l_invoice_currency_code1,
1018: l_precision,
1019: l_extended_precision,
1020: l_mau);
1021: l_amount_applied1 := round(l_amount_applied1 / power(10, l_precision),

Line 1223: fnd_currency.Get_Info(

1219:
1220: IF (amt_applied_from_tc =
1221: l_amount_applied_from1) THEN
1222: IF (l_format_amount1 = 'Y') THEN
1223: fnd_currency.Get_Info(
1224: l_invoice_currency_code1,
1225: l_precision,
1226: l_extended_precision,
1227: l_mau);

Line 1297: fnd_currency.Get_Info(

1293:
1294: IF (amt_applied_from_tc =
1295: l_amount_applied_from1) THEN
1296: IF (l_format_amount1 = 'Y') THEN
1297: fnd_currency.Get_Info(
1298: l_invoice_currency_code1,
1299: l_precision,
1300: l_extended_precision,
1301: l_mau);

Line 1380: fnd_currency.Get_Info(l_invoice_currency_code1,

1376: WHERE rowid = l_rowid;
1377: END IF;
1378: ELSE
1379: IF l_format_amount1 = 'Y' THEN
1380: fnd_currency.Get_Info(l_invoice_currency_code1,
1381: l_precision,
1382: l_extended_precision,
1383: l_mau);
1384: l_unformat_amount := l_amount_applied_from1 * power(10, l_precision);

Line 1556: fnd_currency.Get_Info(l_invoice_currency_code2,

1552: /* Bug:1513671 we know the invoice currency code so we can now format the
1553: amount applied if we need to */
1554:
1555: IF (p_format_amount2 = 'Y') THEN
1556: fnd_currency.Get_Info(l_invoice_currency_code2,
1557: l_precision,
1558: l_extended_precision,
1559: l_mau);
1560: l_amount_applied2 := round(l_amount_applied2 / power(10, l_precision),

Line 1754: fnd_currency.Get_Info(

1750:
1751: IF (amt_applied_from_tc =
1752: l_amount_applied_from2) THEN
1753: IF (l_format_amount2 = 'Y') THEN
1754: fnd_currency.Get_Info(
1755: l_invoice_currency_code2,
1756: l_precision,
1757: l_extended_precision,
1758: l_mau);

Line 1827: fnd_currency.Get_Info(

1823:
1824: IF (amt_applied_from_tc =
1825: l_amount_applied_from2 ) THEN
1826: IF (l_format_amount2 = 'Y') THEN
1827: fnd_currency.Get_Info(
1828: l_invoice_currency_code2,
1829: l_precision,
1830: l_extended_precision,
1831: l_mau);

Line 1911: fnd_currency.Get_Info(l_invoice_currency_code2,

1907: WHERE rowid = l_rowid;
1908: END IF;
1909: ELSE
1910: IF l_format_amount2 = 'Y' THEN
1911: fnd_currency.Get_Info(l_invoice_currency_code2,
1912: l_precision,
1913: l_extended_precision,
1914: l_mau);
1915: l_unformat_amount := l_amount_applied_from2 * power(10, l_precision);

Line 2085: fnd_currency.Get_Info(l_invoice_currency_code3,

2081: /* Bug:1513671 we know the invoice currency code so we can now format the
2082: amount applied if we need to */
2083:
2084: IF (p_format_amount3 = 'Y') THEN
2085: fnd_currency.Get_Info(l_invoice_currency_code3,
2086: l_precision,
2087: l_extended_precision,
2088: l_mau);
2089: l_amount_applied3 := round(l_amount_applied3 / power(10, l_precision),

Line 2290: fnd_currency.Get_Info(

2286: IF (amt_applied_from_tc =
2287: l_amount_applied_from3 ) THEN
2288: IF (l_format_amount3 = 'Y') THEN
2289:
2290: fnd_currency.Get_Info(
2291: l_invoice_currency_code3,
2292: l_precision,
2293: l_extended_precision,
2294: l_mau);

Line 2362: fnd_currency.Get_Info(

2358: IF (amt_applied_from_tc =
2359: l_amount_applied_from3 ) THEN
2360: IF (l_format_amount3 = 'Y') THEN
2361:
2362: fnd_currency.Get_Info(
2363: l_invoice_currency_code3,
2364: l_precision,
2365: l_extended_precision,
2366: l_mau);

Line 2446: fnd_currency.Get_Info(l_invoice_currency_code3,

2442: WHERE rowid = l_rowid;
2443: END IF;
2444: ELSE
2445: IF l_format_amount3 = 'Y' THEN
2446: fnd_currency.Get_Info(l_invoice_currency_code3,
2447: l_precision,
2448: l_extended_precision,
2449: l_mau);
2450: l_unformat_amount := l_amount_applied_from3 * power(10, l_precision);

Line 2621: fnd_currency.Get_Info(l_invoice_currency_code4,

2617: /* Bug:1513671 we know the invoice currency code so we can now format the
2618: amount applied if we need to */
2619:
2620: IF (p_format_amount4 = 'Y') THEN
2621: fnd_currency.Get_Info(l_invoice_currency_code4,
2622: l_precision,
2623: l_extended_precision,
2624: l_mau);
2625: l_amount_applied4 := round(l_amount_applied4 / power(10, l_precision),

Line 2824: fnd_currency.Get_Info(

2820:
2821: IF (amt_applied_from_tc =
2822: l_amount_applied_from4 ) THEN
2823: IF (l_format_amount4 = 'Y') THEN
2824: fnd_currency.Get_Info(
2825: l_invoice_currency_code4,
2826: l_precision,
2827: l_extended_precision,
2828: l_mau);

Line 2895: fnd_currency.Get_Info(

2891:
2892: IF (amt_applied_from_tc =
2893: l_amount_applied_from4 ) THEN
2894: IF (l_format_amount4 = 'Y') THEN
2895: fnd_currency.Get_Info(
2896: l_invoice_currency_code4,
2897: l_precision,
2898: l_extended_precision,
2899: l_mau);

Line 2978: fnd_currency.Get_Info(l_invoice_currency_code4,

2974: WHERE rowid = l_rowid;
2975: END IF;
2976: ELSE
2977: IF l_format_amount4 = 'Y' THEN
2978: fnd_currency.Get_Info(l_invoice_currency_code4,
2979: l_precision,
2980: l_extended_precision,
2981: l_mau);
2982: l_unformat_amount := l_amount_applied_from4 * power(10, l_precision);

Line 3153: fnd_currency.Get_Info(l_invoice_currency_code5,

3149: /* Bug:1513671 we know the invoice currency code so we can now format the
3150: amount applied if we need to */
3151:
3152: IF (p_format_amount5 = 'Y') THEN
3153: fnd_currency.Get_Info(l_invoice_currency_code5,
3154: l_precision,
3155: l_extended_precision,
3156: l_mau);
3157: l_amount_applied5 := round(l_amount_applied5 / power(10, l_precision),

Line 3355: fnd_currency.Get_Info(

3351:
3352: IF (amt_applied_from_tc =
3353: l_amount_applied_from5 ) THEN
3354: IF (l_format_amount5 = 'Y') THEN
3355: fnd_currency.Get_Info(
3356: l_invoice_currency_code5,
3357: l_precision,
3358: l_extended_precision,
3359: l_mau);

Line 3426: fnd_currency.Get_Info(

3422:
3423: IF (amt_applied_from_tc =
3424: l_amount_applied_from5 ) THEN
3425: IF (l_format_amount5 = 'Y') THEN
3426: fnd_currency.Get_Info(
3427: l_invoice_currency_code5,
3428: l_precision,
3429: l_extended_precision,
3430: l_mau);

Line 3509: fnd_currency.Get_Info(l_invoice_currency_code5,

3505: WHERE rowid = l_rowid;
3506: END IF;
3507: ELSE
3508: IF l_format_amount5 = 'Y' THEN
3509: fnd_currency.Get_Info(l_invoice_currency_code5,
3510: l_precision,
3511: l_extended_precision,
3512: l_mau);
3513: l_unformat_amount := l_amount_applied_from5 * power(10, l_precision);

Line 3684: fnd_currency.Get_Info(l_invoice_currency_code6,

3680: /* Bug:1513671 we know the invoice currency code so we can now format the
3681: amount applied if we need to */
3682:
3683: IF (p_format_amount6 = 'Y') THEN
3684: fnd_currency.Get_Info(l_invoice_currency_code6,
3685: l_precision,
3686: l_extended_precision,
3687: l_mau);
3688: l_amount_applied6 := round(l_amount_applied6 / power(10, l_precision),

Line 3886: fnd_currency.Get_Info(

3882:
3883: IF (amt_applied_from_tc =
3884: l_amount_applied_from6 ) THEN
3885: IF (l_format_amount6 = 'Y') THEN
3886: fnd_currency.Get_Info(
3887: l_invoice_currency_code6,
3888: l_precision,
3889: l_extended_precision,
3890: l_mau);

Line 3956: fnd_currency.Get_Info(

3952:
3953: IF (amt_applied_from_tc =
3954: l_amount_applied_from6 ) THEN
3955: IF (l_format_amount6 = 'Y') THEN
3956: fnd_currency.Get_Info(
3957: l_invoice_currency_code6,
3958: l_precision,
3959: l_extended_precision,
3960: l_mau);

Line 4039: fnd_currency.Get_Info(l_invoice_currency_code6,

4035: WHERE rowid = l_rowid;
4036: END IF;
4037: ELSE
4038: IF l_format_amount6 = 'Y' THEN
4039: fnd_currency.Get_Info(l_invoice_currency_code6,
4040: l_precision,
4041: l_extended_precision,
4042: l_mau);
4043: l_unformat_amount := l_amount_applied_from6 * power(10, l_precision);

Line 4214: fnd_currency.Get_Info(l_invoice_currency_code7,

4210: /* Bug:1513671 we know the invoice currency code so we can now format the
4211: amount applied if we need to */
4212:
4213: IF (p_format_amount7 = 'Y') THEN
4214: fnd_currency.Get_Info(l_invoice_currency_code7,
4215: l_precision,
4216: l_extended_precision,
4217: l_mau);
4218: l_amount_applied7 := round(l_amount_applied7 / power(10, l_precision),

Line 4416: fnd_currency.Get_Info(

4412:
4413: IF (amt_applied_from_tc =
4414: l_amount_applied_from7 ) THEN
4415: IF (l_format_amount7 = 'Y') THEN
4416: fnd_currency.Get_Info(
4417: l_invoice_currency_code7,
4418: l_precision,
4419: l_extended_precision,
4420: l_mau);

Line 4487: fnd_currency.Get_Info(

4483:
4484: IF (amt_applied_from_tc =
4485: l_amount_applied_from7 ) THEN
4486: IF (l_format_amount7 = 'Y') THEN
4487: fnd_currency.Get_Info(
4488: l_invoice_currency_code7,
4489: l_precision,
4490: l_extended_precision,
4491: l_mau);

Line 4570: fnd_currency.Get_Info(l_invoice_currency_code7,

4566: WHERE rowid = l_rowid;
4567: END IF;
4568: ELSE
4569: IF l_format_amount7 = 'Y' THEN
4570: fnd_currency.Get_Info(l_invoice_currency_code7,
4571: l_precision,
4572: l_extended_precision,
4573: l_mau);
4574: l_unformat_amount := l_amount_applied_from7 * power(10, l_precision);

Line 4745: fnd_currency.Get_Info(l_invoice_currency_code8,

4741: /* Bug:1513671 we know the invoice currency code so we can now format the
4742: amount applied if we need to */
4743:
4744: IF (p_format_amount8 = 'Y') THEN
4745: fnd_currency.Get_Info(l_invoice_currency_code8,
4746: l_precision,
4747: l_extended_precision,
4748: l_mau);
4749: l_amount_applied8 := round(l_amount_applied8 / power(10, l_precision),

Line 4948: fnd_currency.Get_Info(

4944:
4945: IF (amt_applied_from_tc =
4946: l_amount_applied_from8 ) THEN
4947: IF (l_format_amount8 = 'Y') THEN
4948: fnd_currency.Get_Info(
4949: l_invoice_currency_code8,
4950: l_precision,
4951: l_extended_precision,
4952: l_mau);

Line 5019: fnd_currency.Get_Info(

5015:
5016: IF (amt_applied_from_tc =
5017: l_amount_applied_from8 ) THEN
5018: IF (l_format_amount8 = 'Y') THEN
5019: fnd_currency.Get_Info(
5020: l_invoice_currency_code8,
5021: l_precision,
5022: l_extended_precision,
5023: l_mau);

Line 5102: fnd_currency.Get_Info(l_invoice_currency_code8,

5098: WHERE rowid = l_rowid;
5099: END IF;
5100: ELSE
5101: IF l_format_amount8 = 'Y' THEN
5102: fnd_currency.Get_Info(l_invoice_currency_code8,
5103: l_precision,
5104: l_extended_precision,
5105: l_mau);
5106: l_unformat_amount := l_amount_applied_from8 * power(10, l_precision);

Line 5175: fnd_currency.Get_Info(

5171: debug1('p_amount_applied = ' || to_char(p_amount_applied));
5172: debug1('p_trans_to_receipt_rate = ' || to_char(p_trans_to_receipt_rate));
5173: debug1('p curr code = ' || p_currency_code);
5174:
5175: fnd_currency.Get_Info(
5176: p_currency_code,
5177: l_precision,
5178: l_extended_precision,
5179: l_mau);

Line 5253: fnd_currency.Get_Info(

5249: debug1('p_amount_applied_from = ' || to_char(p_amount_applied_from));
5250: debug1('p_trans_to_receipt_rate = ' || to_char(p_trans_to_receipt_rate));
5251: debug1('p inv curr code = ' || p_invoice_currency_code);
5252:
5253: fnd_currency.Get_Info(
5254: p_invoice_currency_code,
5255: l_precision,
5256: l_extended_precision,
5257: l_mau);

Line 5495: fnd_currency.Get_Info(

5491: debug1('p_amount_applied = ' || to_char(p_amount_applied));
5492: debug1('p_trans_to_receipt_rate = ' || to_char(p_trans_to_receipt_rate));
5493: debug1('p curr code = ' || p_currency_code);
5494:
5495: fnd_currency.Get_Info(
5496: p_currency_code,
5497: l_precision,
5498: l_extended_precision,
5499: l_mau);

Line 5575: fnd_currency.Get_Info(

5571: debug1('p_amount_applied_from = ' || to_char(p_amount_applied_from));
5572: debug1('p_trans_to_receipt_rate = ' || to_char(p_trans_to_receipt_rate));
5573: debug1('p inv curr code = ' || p_invoice_currency_code);
5574:
5575: fnd_currency.Get_Info(
5576: p_invoice_currency_code,
5577: l_precision,
5578: l_extended_precision,
5579: l_mau);