DBA Data[Home] [Help]

APPS.INV_MGD_MVT_UTILS_PKG dependencies on INV_CONVERT

Line 110: x_movement_transaction.primary_quantity := INV_CONVERT.INV_UM_CONVERT

106: l_stat_typ_transaction := p_stat_typ_transaction;
107:
108: IF x_movement_transaction.primary_quantity IS NULL
109: THEN
110: x_movement_transaction.primary_quantity := INV_CONVERT.INV_UM_CONVERT
111: ( x_movement_transaction.inventory_item_id
112: , 5
113: , x_movement_transaction.transaction_quantity
114: , x_movement_transaction.transaction_uom_code

Line 533: /* INV_CONVERT standard conversion APIs are called to get the conversion

529: l_unit_weight := 1;
530: ELSE
531:
532: /* Bug 5984760 - Start */
533: /* INV_CONVERT standard conversion APIs are called to get the conversion
534: rates. Get_Rate_Two_UOM will no longer be uses */
535:
536:
537: --Get conversion rate between transaction uom and movement uom

Line 544: INV_CONVERT.inv_um_conversion(

540: , p_uom1 => p_tranx_uom_code
541: , p_uom2 => p_stat_typ_uom_code
542: ); */
543:
544: INV_CONVERT.inv_um_conversion(
545: from_unit => p_tranx_uom_code
546: , to_unit => p_stat_typ_uom_code
547: , item_id => p_inventory_item_id
548: , uom_rate => l_conversion_rate);

Line 583: INV_CONVERT.inv_um_conversion(

579: , p_uom1 => p_tranx_uom_code
580: , p_uom2 => l_primary_uom_code
581: ); */
582:
583: INV_CONVERT.inv_um_conversion(
584: from_unit => p_tranx_uom_code
585: , to_unit => l_primary_uom_code
586: , item_id => p_inventory_item_id
587: , uom_rate => l_rate1);

Line 598: INV_CONVERT.inv_um_conversion(

594: , p_uom1 => l_weight_uom_code
595: , p_uom2 => p_stat_typ_uom_code
596: ); */
597:
598: INV_CONVERT.inv_um_conversion(
599: from_unit => l_weight_uom_code
600: , to_unit => p_stat_typ_uom_code
601: , item_id => p_inventory_item_id
602: , uom_rate => l_rate2);

Line 746: INV_CONVERT.inv_um_conversion(

742: ,'enter procedure'
743: );
744: END IF;
745:
746: INV_CONVERT.inv_um_conversion(
747: from_unit => p_transaction_uom_code
748: , to_unit => p_alternate_uom_code
749: , item_id => p_inventory_item_id
750: , uom_rate => l_conv_rate);