DBA Data[Home] [Help]

APPS.RCV_SEEDEVENTS_PVT dependencies on INV_CONVERT

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

1866: -- the new UOM and it updates the unit_price by --
1867: -- converting it with the new UOM. --
1868: -- --
1869: -- Because there are already other modules under PO_TOP --
1870: -- that use the inv_convert package, we can safely use --
1871: -- it here without introducing new dependencies on that --
1872: -- product. --
1873: -- --
1874: -- VERSION 1.0 --

Line 2001: INV_Convert.INV_UM_Conversion(

1997: END IF;
1998:
1999: -- Get the UOM rate from source_doc_uom to primary_uom
2000: l_stmt_num := 50;
2001: INV_Convert.INV_UM_Conversion(
2002: from_unit => l_source_doc_uom_code,
2003: to_unit => l_primary_uom_code,
2004: item_id => l_item_id,
2005: uom_rate => l_primary_uom_rate);

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

2005: uom_rate => l_primary_uom_rate);
2006:
2007: IF (l_primary_uom_rate = -99999) THEN
2008: RAISE FND_API.G_EXC_ERROR;
2009: l_api_message := 'inv_convert.inv_um_conversion() failed to get the UOM rate';
2010: IF G_DEBUG = 'Y' AND FND_LOG.LEVEL_ERROR >= FND_LOG.G_CURRENT_RUNTIME_LEVEL THEN
2011: FND_LOG.string(FND_LOG.LEVEL_ERROR,G_LOG_HEAD ||l_api_name||'.'||l_stmt_num,
2012: l_api_message);
2013: END IF;

Line 2018: INV_Convert.INV_UM_Conversion(

2014: END IF;
2015:
2016: -- Get the UOM rate from source_doc_uom to transaction_uom
2017: l_stmt_num := 60;
2018: INV_Convert.INV_UM_Conversion(
2019: from_unit => l_source_doc_uom_code,
2020: to_unit => l_trx_uom_code,
2021: item_id => l_item_id,
2022: uom_rate => l_trx_uom_rate);

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

2022: uom_rate => l_trx_uom_rate);
2023:
2024: IF (l_trx_uom_rate = -99999) THEN
2025: RAISE FND_API.G_EXC_ERROR;
2026: l_api_message := 'inv_convert.inv_um_conversion() failed to get the UOM rate';
2027: IF G_DEBUG = 'Y' AND FND_LOG.LEVEL_ERROR >= FND_LOG.G_CURRENT_RUNTIME_LEVEL THEN
2028: FND_LOG.string(FND_LOG.LEVEL_ERROR,G_LOG_HEAD ||l_api_name||'.'||l_stmt_num,
2029: l_api_message);
2030: END IF;