DBA Data[Home] [Help]

APPS.GMF_RCV_ACCOUNTING_PKG dependencies on INV_CONVERT

Line 1470: -- that use the inv_convert package, we can safely use --

1466: -- the new UOM and it updates the unit_price by --
1467: -- converting it with the new UOM. --
1468: -- --
1469: -- Because there are already other modules under PO_TOP --
1470: -- that use the inv_convert package, we can safely use --
1471: -- it here without introducing new dependencies on that --
1472: -- product. --
1473: -- --
1474: -- VERSION 1.0 --

Line 1604: inv_convert.inv_um_conversion (from_unit => l_source_doc_uom_code,

1600: END IF;
1601:
1602: -- Get the UOM rate from source_doc_uom to primary_uom
1603: l_stmt_num := 50;
1604: inv_convert.inv_um_conversion (from_unit => l_source_doc_uom_code,
1605: to_unit => l_primary_uom_code,
1606: item_id => l_item_id,
1607: uom_rate => l_primary_uom_rate
1608: );

Line 1614: 'inv_convert.inv_um_conversion() failed to get the UOM rate';

1610: IF (l_primary_uom_rate = -99999)
1611: THEN
1612: RAISE fnd_api.g_exc_error;
1613: l_api_message :=
1614: 'inv_convert.inv_um_conversion() failed to get the UOM rate';
1615:
1616: IF g_debug = 'Y'
1617: AND fnd_log.level_error >= fnd_log.g_current_runtime_level
1618: THEN

Line 1628: inv_convert.inv_um_conversion (from_unit => l_source_doc_uom_code,

1624: END IF;
1625:
1626: -- Get the UOM rate from source_doc_uom to transaction_uom
1627: l_stmt_num := 60;
1628: inv_convert.inv_um_conversion (from_unit => l_source_doc_uom_code,
1629: to_unit => l_trx_uom_code,
1630: item_id => l_item_id,
1631: uom_rate => l_trx_uom_rate
1632: );

Line 1638: 'inv_convert.inv_um_conversion() failed to get the UOM rate';

1634: IF (l_trx_uom_rate = -99999)
1635: THEN
1636: RAISE fnd_api.g_exc_error;
1637: l_api_message :=
1638: 'inv_convert.inv_um_conversion() failed to get the UOM rate';
1639:
1640: IF g_debug = 'Y'
1641: AND fnd_log.level_error >= fnd_log.g_current_runtime_level
1642: THEN