DBA Data[Home] [Help]

APPS.GMF_RCV_ACCOUNTING_PKG dependencies on INV_CONVERT

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

1472: -- the new UOM and it updates the unit_price by --
1473: -- converting it with the new UOM. --
1474: -- --
1475: -- Because there are already other modules under PO_TOP --
1476: -- that use the inv_convert package, we can safely use --
1477: -- it here without introducing new dependencies on that --
1478: -- product. --
1479: -- --
1480: -- VERSION 1.0 --

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

1606: END IF;
1607:
1608: -- Get the UOM rate from source_doc_uom to primary_uom
1609: l_stmt_num := 50;
1610: inv_convert.inv_um_conversion (from_unit => l_source_doc_uom_code,
1611: to_unit => l_primary_uom_code,
1612: item_id => l_item_id,
1613: uom_rate => l_primary_uom_rate
1614: );

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

1616: IF (l_primary_uom_rate = -99999)
1617: THEN
1618: RAISE fnd_api.g_exc_error;
1619: l_api_message :=
1620: 'inv_convert.inv_um_conversion() failed to get the UOM rate';
1621:
1622: IF g_debug = 'Y'
1623: AND fnd_log.level_error >= fnd_log.g_current_runtime_level
1624: THEN

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

1630: END IF;
1631:
1632: -- Get the UOM rate from source_doc_uom to transaction_uom
1633: l_stmt_num := 60;
1634: inv_convert.inv_um_conversion (from_unit => l_source_doc_uom_code,
1635: to_unit => l_trx_uom_code,
1636: item_id => l_item_id,
1637: uom_rate => l_trx_uom_rate
1638: );

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

1640: IF (l_trx_uom_rate = -99999)
1641: THEN
1642: RAISE fnd_api.g_exc_error;
1643: l_api_message :=
1644: 'inv_convert.inv_um_conversion() failed to get the UOM rate';
1645:
1646: IF g_debug = 'Y'
1647: AND fnd_log.level_error >= fnd_log.g_current_runtime_level
1648: THEN