DBA Data[Home] [Help]

APPS.GMD_SAMPLES_GRP dependencies on INV_CONVERT

Line 1472: l_trans_qty2 := INV_CONVERT. inv_um_convert (

1468: -- Bug 4165704: Changed UOM conversion for Inventory Convergence
1469: IF p_sample.sample_type = 'I'
1470: AND l_primary_uom_code IS NOT NULL THEN
1471:
1472: l_trans_qty2 := INV_CONVERT. inv_um_convert (
1473: item_id => p_sample.inventory_item_id,
1474: lot_number => NULL,
1475: organization_id => p_sample.organization_id,
1476: precision => 5, -- decimal point precision

Line 4450: -- := INV_CONVERT.inv_um_convert(

4446: -- Gmd_samples_grp.Get_item_values( p_sample_display => l_item_rec);
4447:
4448: -- IF l_item_rec.Dual_uom_control = 3 THEN
4449: -- l_trans_rec.trans_qty2
4450: -- := INV_CONVERT.inv_um_convert(
4451: -- item_id => p_sample.inventory_item_id
4452: -- , precision => 5
4453: -- , from_quantity => p_sample.sample_qty
4454: -- , from_unit => p_sample.sample_qty_uom

Line 4759: p_mmti_rec.transaction_quantity := INV_CONVERT. inv_um_convert (

4755: -- p_sample.sample_qty_uom,
4756: -- material_detail_item_um,
4757: -- 0);
4758:
4759: p_mmti_rec.transaction_quantity := INV_CONVERT. inv_um_convert (
4760: item_id => p_sample.inventory_item_id,
4761: lot_number => 0,
4762: organization_id => p_sample.organization_id,
4763: precision => 5, -- decimal point precision

Line 4829: p_mmti_rec.secondary_transaction_quantity := INV_CONVERT. inv_um_convert (

4825: -- p_sample.sample_qty_uom,
4826: -- l_item_um2,
4827: -- 0);
4828:
4829: p_mmti_rec.secondary_transaction_quantity := INV_CONVERT. inv_um_convert (
4830: item_id => p_sample.inventory_item_id,
4831: lot_number => 0,
4832: organization_id => p_sample.organization_id,
4833: precision => 5, -- decimal point precision

Line 5178: --RLNAGARA B5106199 Replaced the call gmicuom.uom_conversion with INV_CONVERT.inv_um_convert below

5174:
5175: -- Convert consumed qty to sample_qty_uom
5176: IF l_results.test_qty_uom <> l_samples.sample_qty_uom THEN
5177:
5178: --RLNAGARA B5106199 Replaced the call gmicuom.uom_conversion with INV_CONVERT.inv_um_convert below
5179: /* converted_qty := gmicuom.uom_conversion(l_samples.inventory_item_id,
5180: 0,
5181: qty,
5182: l_results.test_qty_uom,

Line 5187: converted_qty := INV_CONVERT.inv_um_convert(

5183: l_samples.sample_qty_uom,
5184: 0);
5185: */
5186:
5187: converted_qty := INV_CONVERT.inv_um_convert(
5188: item_id => l_samples.inventory_item_id,
5189: lot_number => NULL,
5190: organization_id => l_samples.organization_id,
5191: precision => 5,