DBA Data[Home] [Help]

APPS.OE_SHIP_CONFIRMATION_PUB dependencies on INV_CONVERT

Line 695: INV_CONVERT.INV_UM_CONVERT(l_inventory_item_id , l_lot_number -- INVCONV

691: p_original_qty => LOT.shipped_quantity,
692: p_lot_id => l_lot_id); */
693:
694: l_temp_shipped_quantity :=
695: INV_CONVERT.INV_UM_CONVERT(l_inventory_item_id , l_lot_number -- INVCONV
696: , l_ship_from_org_id -- INVCONV
697: ,9 -- Precision (Default precision is 6 decimals) ?
698: ,LOT.shipped_quantity
699: ,p_line_tbl(J).shipping_quantity_uom

Line 2066: l_line_tbl(1).ordered_quantity2 := INV_CONVERT.INV_UM_CONVERT(p_ship_line_rec.inventory_item_id(p_index)-- INVCONV

2062:
2063: --Begin Bug 7528326. Assign shipped_qty2 to ordered_qty2 instead of calculating from ordered_qty.
2064:
2065: /*
2066: l_line_tbl(1).ordered_quantity2 := INV_CONVERT.INV_UM_CONVERT(p_ship_line_rec.inventory_item_id(p_index)-- INVCONV
2067: , NULL
2068: ,p_ship_line_rec.ship_from_org_id(p_index)
2069: ,5 --NULL
2070: ,l_line_tbl(1).ordered_quantity

Line 2077: l_line_tbl(2).ordered_quantity2 := INV_CONVERT.INV_UM_CONVERT(p_ship_line_rec.inventory_item_id(p_index)-- INVCONV

2073: ,NULL -- From uom name
2074: ,NULL -- To uom name
2075: );
2076:
2077: l_line_tbl(2).ordered_quantity2 := INV_CONVERT.INV_UM_CONVERT(p_ship_line_rec.inventory_item_id(p_index)-- INVCONV
2078: , NULL
2079: ,p_ship_line_rec.ship_from_org_id(p_index)
2080: ,5 --NULL
2081: ,l_line_tbl(2).ordered_quantity

Line 2094: INV_CONVERT.INV_UM_CONVERT( p_ship_line_rec.inventory_item_id(p_index)-- INVCONV

2090: IF p_ship_line_rec.shipping_quantity2(p_index) IS NOT NULL THEN
2091: l_line_tbl(1).ordered_quantity2 := p_ship_line_rec.shipping_quantity2(p_index);
2092: ELSE --use conversion
2093: l_line_tbl(1).ordered_quantity2 :=
2094: INV_CONVERT.INV_UM_CONVERT( p_ship_line_rec.inventory_item_id(p_index)-- INVCONV
2095: ,NULL
2096: ,p_ship_line_rec.ship_from_org_id(p_index)
2097: ,5 --NULL
2098: ,l_line_tbl(1).ordered_quantity

Line 2116: l_return := INV_CONVERT.Within_Deviation -- INVCONV

2112: --Check if order qty1 and order qty2 of split line are within deviation, only for positive qty.
2113: --IF l_line_tbl(2).ordered_quantity2 > 0 THEN
2114: --Bug 12589643. Added '=' when the ordered_quantity2 is 0
2115: IF l_line_tbl(2).ordered_quantity2 >= 0 THEN
2116: l_return := INV_CONVERT.Within_Deviation -- INVCONV
2117: ( p_organization_id => p_ship_line_rec.ship_from_org_id(p_index)
2118: , p_inventory_item_id => p_ship_line_rec.inventory_item_id(p_index)
2119: , p_lot_number => NULL -- p_lot_number -- INVCONV
2120: , p_precision => 5

Line 2129: INV_CONVERT.INV_UM_CONVERT( p_ship_line_rec.inventory_item_id(p_index)-- INVCONV

2125: );
2126:
2127: IF l_return = 0 THEN --Not within deviation, hence use conversion
2128: l_line_tbl(2).ordered_quantity2 :=
2129: INV_CONVERT.INV_UM_CONVERT( p_ship_line_rec.inventory_item_id(p_index)-- INVCONV
2130: ,NULL
2131: ,p_ship_line_rec.ship_from_org_id(p_index)
2132: ,5 --NULL
2133: ,l_line_tbl(2).ordered_quantity

Line 2143: INV_CONVERT.INV_UM_CONVERT( p_ship_line_rec.inventory_item_id(p_index)-- INVCONV

2139: END IF;
2140: END IF;
2141: ELSE --use conversion
2142: l_line_tbl(2).ordered_quantity2 :=
2143: INV_CONVERT.INV_UM_CONVERT( p_ship_line_rec.inventory_item_id(p_index)-- INVCONV
2144: ,NULL
2145: ,p_ship_line_rec.ship_from_org_id(p_index)
2146: ,5 --NULL
2147: ,l_line_tbl(2).ordered_quantity