DBA Data[Home] [Help]

APPS.GMD_SAMPLES_GRP dependencies on INV_CONVERT

Line 1375: l_trans_qty2 := INV_CONVERT. inv_um_convert (

1371: -- Bug 4165704: Changed UOM conversion for Inventory Convergence
1372: IF p_sample.sample_type = 'I'
1373: AND l_primary_uom_code IS NOT NULL THEN
1374:
1375: l_trans_qty2 := INV_CONVERT. inv_um_convert (
1376: item_id => p_sample.inventory_item_id,
1377: lot_number => NULL,
1378: organization_id => p_sample.organization_id,
1379: precision => 5, -- decimal point precision

Line 3812: -- := INV_CONVERT.inv_um_convert(

3808: -- Gmd_samples_grp.Get_item_values( p_sample_display => l_item_rec);
3809:
3810: -- IF l_item_rec.Dual_uom_control = 3 THEN
3811: -- l_trans_rec.trans_qty2
3812: -- := INV_CONVERT.inv_um_convert(
3813: -- item_id => p_sample.inventory_item_id
3814: -- , precision => 5
3815: -- , from_quantity => p_sample.sample_qty
3816: -- , from_unit => p_sample.sample_qty_uom

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

4110: -- p_sample.sample_qty_uom,
4111: -- material_detail_item_um,
4112: -- 0);
4113:
4114: p_mmti_rec.transaction_quantity := INV_CONVERT. inv_um_convert (
4115: item_id => p_sample.inventory_item_id,
4116: lot_number => 0,
4117: organization_id => p_sample.organization_id,
4118: precision => 5, -- decimal point precision

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

4180: -- p_sample.sample_qty_uom,
4181: -- l_item_um2,
4182: -- 0);
4183:
4184: p_mmti_rec.secondary_transaction_quantity := INV_CONVERT. inv_um_convert (
4185: item_id => p_sample.inventory_item_id,
4186: lot_number => 0,
4187: organization_id => p_sample.organization_id,
4188: precision => 5, -- decimal point precision

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

4529:
4530: -- Convert consumed qty to sample_qty_uom
4531: IF l_results.test_qty_uom <> l_samples.sample_qty_uom THEN
4532:
4533: --RLNAGARA B5106199 Replaced the call gmicuom.uom_conversion with INV_CONVERT.inv_um_convert below
4534: /* converted_qty := gmicuom.uom_conversion(l_samples.inventory_item_id,
4535: 0,
4536: qty,
4537: l_results.test_qty_uom,

Line 4542: converted_qty := INV_CONVERT.inv_um_convert(

4538: l_samples.sample_qty_uom,
4539: 0);
4540: */
4541:
4542: converted_qty := INV_CONVERT.inv_um_convert(
4543: item_id => l_samples.inventory_item_id,
4544: lot_number => NULL,
4545: organization_id => l_samples.organization_id,
4546: precision => 5,