DBA Data[Home] [Help]

APPS.FTE_PO_INTEGRATION_GRP dependencies on WSH_WV_UTILS

Line 583: l_CC_net_wt_table(j) := WSH_WV_UTILS.Convert_Uom (l_CC_uom_code_table(j),

579: l_first_uom_code := l_CC_uom_code_table(j);
580: END IF;
581: -- Convert the uom if different from the 1st UOM
582: IF l_first_uom_code <> l_CC_uom_code_table(j) and nvl(l_CC_net_wt_table(j),0) > 0 then
583: l_CC_net_wt_table(j) := WSH_WV_UTILS.Convert_Uom (l_CC_uom_code_table(j),
584: l_first_uom_code,
585: l_CC_net_wt_table(j),
586: l_CC_item_id_table(j));
587: END IF;

Line 1206: l_qty_table(h) := WSH_WV_UTILS.Convert_Uom (l_uom_code,

1202: -- Calculate the cost at each receipt level
1203: -- Converting UOMs between Shipped Qty and Recd Qty, if different
1204: IF (P_SHIP_QTY_UOM <> l_uom_code) and nvl(l_qty_table(h),0) > 0 then
1205: -- Need to verify on this conversion
1206: l_qty_table(h) := WSH_WV_UTILS.Convert_Uom (l_uom_code,
1207: P_SHIP_QTY_UOM,
1208: l_qty_table(h),
1209: l_item_id_table(h));
1210: END IF;