DBA Data[Home] [Help]

APPS.PO_INTERFACE_S dependencies on FND_CURRENCY

Line 3250: fnd_currency.get_info(interface.h_currency_code,

3246:
3247: l_progress := '020';
3248:
3249: IF interface.h_currency_code IS NOT NULL THEN
3250: fnd_currency.get_info(interface.h_currency_code,
3251: x_precision,
3252: x_ext_precision,
3253: x_min_unit );
3254: END IF;

Line 5805: fnd_currency.get_info(interface.h_currency_code,

5801: --
5802: --
5803:
5804: IF interface.h_currency_code IS NOT NULL THEN
5805: fnd_currency.get_info(interface.h_currency_code,
5806: x_precision,
5807: x_ext_precision,
5808: x_min_unit );
5809: END IF;

Line 6481: -- Bug 1353736 Call fnd_currency.get_info to get the precision

6477: need_by_date or days_late_received_allowed is null then the last_accept_date
6478: should be null.
6479: */
6480:
6481: -- Bug 1353736 Call fnd_currency.get_info to get the precision
6482: --added by jbalakri for 1805397
6483: IF interface.h_currency_code IS NOT NULL THEN
6484: fnd_currency.get_info(interface.h_currency_code,
6485: x_precision,

Line 6484: fnd_currency.get_info(interface.h_currency_code,

6480:
6481: -- Bug 1353736 Call fnd_currency.get_info to get the precision
6482: --added by jbalakri for 1805397
6483: IF interface.h_currency_code IS NOT NULL THEN
6484: fnd_currency.get_info(interface.h_currency_code,
6485: x_precision,
6486: x_ext_precision,
6487: x_min_unit );
6488: end if;

Line 7167: FND_CURRENCY.get_info ( currency_code => interface.h_currency_code -- IN

7163: -- the precision/extended precision information for the PO currency.
7164: --
7165: -- Bug 4471683: added not null check for currency
7166: IF interface.h_currency_code IS NOT NULL THEN
7167: FND_CURRENCY.get_info ( currency_code => interface.h_currency_code -- IN
7168: , precision => x_precision -- OUT
7169: , ext_precision => x_ext_precision -- OUT
7170: , min_acct_unit => x_min_unit -- OUT
7171: );

Line 9083: FND_CURRENCY.get_info ( currency_code => p_po_currency_code

9079: -- Get the precision/extended precision for the PO Currency.
9080: --
9081: -- Bug 4471683: added not null check for currency
9082: IF interface.h_currency_code IS NOT NULL THEN
9083: FND_CURRENCY.get_info ( currency_code => p_po_currency_code
9084: , precision => l_precision
9085: , ext_precision => l_ext_precision
9086: , min_acct_unit => l_min_acct_unit
9087: );