DBA Data[Home] [Help]

APPS.PO_INTERFACE_S dependencies on FND_CURRENCY

Line 2906: fnd_currency.get_info(interface.h_currency_code,

2902:
2903: l_progress := '020';
2904:
2905: IF interface.h_currency_code IS NOT NULL THEN
2906: fnd_currency.get_info(interface.h_currency_code,
2907: x_precision,
2908: x_ext_precision,
2909: x_min_unit );
2910: END IF;

Line 5328: fnd_currency.get_info(interface.h_currency_code,

5324: --
5325: --
5326:
5327: IF interface.h_currency_code IS NOT NULL THEN
5328: fnd_currency.get_info(interface.h_currency_code,
5329: x_precision,
5330: x_ext_precision,
5331: x_min_unit );
5332: END IF;

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

5977: need_by_date or days_late_received_allowed is null then the last_accept_date
5978: should be null.
5979: */
5980:
5981: -- Bug 1353736 Call fnd_currency.get_info to get the precision
5982: --added by jbalakri for 1805397
5983: IF interface.h_currency_code IS NOT NULL THEN
5984: fnd_currency.get_info(interface.h_currency_code,
5985: x_precision,

Line 5984: fnd_currency.get_info(interface.h_currency_code,

5980:
5981: -- Bug 1353736 Call fnd_currency.get_info to get the precision
5982: --added by jbalakri for 1805397
5983: IF interface.h_currency_code IS NOT NULL THEN
5984: fnd_currency.get_info(interface.h_currency_code,
5985: x_precision,
5986: x_ext_precision,
5987: x_min_unit );
5988: end if;

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

6585: -- the precision/extended precision information for the PO currency.
6586: --
6587: -- Bug 4471683: added not null check for currency
6588: IF interface.h_currency_code IS NOT NULL THEN
6589: FND_CURRENCY.get_info ( currency_code => interface.h_currency_code -- IN
6590: , precision => x_precision -- OUT
6591: , ext_precision => x_ext_precision -- OUT
6592: , min_acct_unit => x_min_unit -- OUT
6593: );

Line 8476: FND_CURRENCY.get_info ( currency_code => p_po_currency_code

8472: -- Get the precision/extended precision for the PO Currency.
8473: --
8474: -- Bug 4471683: added not null check for currency
8475: IF interface.h_currency_code IS NOT NULL THEN
8476: FND_CURRENCY.get_info ( currency_code => p_po_currency_code
8477: , precision => l_precision
8478: , ext_precision => l_ext_precision
8479: , min_acct_unit => l_min_acct_unit
8480: );