DBA Data[Home] [Help]

APPS.RCV_SEEDEVENTS_PVT dependencies on INV_CONVERT

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

1873: -- the new UOM and it updates the unit_price by --
1874: -- converting it with the new UOM. --
1875: -- --
1876: -- Because there are already other modules under PO_TOP --
1877: -- that use the inv_convert package, we can safely use --
1878: -- it here without introducing new dependencies on that --
1879: -- product. --
1880: -- --
1881: -- VERSION 1.0 --

Line 2008: INV_Convert.INV_UM_Conversion(

2004: END IF;
2005:
2006: -- Get the UOM rate from source_doc_uom to primary_uom
2007: l_stmt_num := 50;
2008: INV_Convert.INV_UM_Conversion(
2009: from_unit => l_source_doc_uom_code,
2010: to_unit => l_primary_uom_code,
2011: item_id => l_item_id,
2012: uom_rate => l_primary_uom_rate);

Line 2016: l_api_message := 'inv_convert.inv_um_conversion() failed to get the UOM rate';

2012: uom_rate => l_primary_uom_rate);
2013:
2014: IF (l_primary_uom_rate = -99999) THEN
2015: RAISE FND_API.G_EXC_ERROR;
2016: l_api_message := 'inv_convert.inv_um_conversion() failed to get the UOM rate';
2017: IF G_DEBUG = 'Y' AND FND_LOG.LEVEL_ERROR >= FND_LOG.G_CURRENT_RUNTIME_LEVEL THEN
2018: FND_LOG.string(FND_LOG.LEVEL_ERROR,G_LOG_HEAD ||l_api_name||'.'||l_stmt_num,
2019: l_api_message);
2020: END IF;

Line 2025: INV_Convert.INV_UM_Conversion(

2021: END IF;
2022:
2023: -- Get the UOM rate from source_doc_uom to transaction_uom
2024: l_stmt_num := 60;
2025: INV_Convert.INV_UM_Conversion(
2026: from_unit => l_source_doc_uom_code,
2027: to_unit => l_trx_uom_code,
2028: item_id => l_item_id,
2029: uom_rate => l_trx_uom_rate);

Line 2033: l_api_message := 'inv_convert.inv_um_conversion() failed to get the UOM rate';

2029: uom_rate => l_trx_uom_rate);
2030:
2031: IF (l_trx_uom_rate = -99999) THEN
2032: RAISE FND_API.G_EXC_ERROR;
2033: l_api_message := 'inv_convert.inv_um_conversion() failed to get the UOM rate';
2034: IF G_DEBUG = 'Y' AND FND_LOG.LEVEL_ERROR >= FND_LOG.G_CURRENT_RUNTIME_LEVEL THEN
2035: FND_LOG.string(FND_LOG.LEVEL_ERROR,G_LOG_HEAD ||l_api_name||'.'||l_stmt_num,
2036: l_api_message);
2037: END IF;