DBA Data[Home] [Help]

APPS.OE_SHIP_CONFIRMATION_PUB dependencies on INV_CONVERT

Line 681: l_temp_shipped_quantity := INV_CONVERT.INV_UM_CONVERT(l_inventory_item_id

677: p_apps_to_uom => l_order_quantity_uom,
678: p_original_qty => LOT.shipped_quantity,
679: p_lot_id => l_lot_id); */
680:
681: l_temp_shipped_quantity := INV_CONVERT.INV_UM_CONVERT(l_inventory_item_id
682: , l_lot_number -- INVCONV
683: , l_ship_from_org_id -- INVCONV
684: ,9 -- Precision (Default precision is 6 decimals) ?
685: ,LOT.shipped_quantity

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

1952:
1953: --Begin Bug 7528326. Assign shipped_qty2 to ordered_qty2 instead of calculating from ordered_qty.
1954:
1955: /*
1956: l_line_tbl(1).ordered_quantity2 := INV_CONVERT.INV_UM_CONVERT(p_ship_line_rec.inventory_item_id(p_index)-- INVCONV
1957: , NULL
1958: ,p_ship_line_rec.ship_from_org_id(p_index)
1959: ,5 --NULL
1960: ,l_line_tbl(1).ordered_quantity

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

1963: ,NULL -- From uom name
1964: ,NULL -- To uom name
1965: );
1966: oe_debug_pub.add('PAL here 4 index is '|| p_index, 3);
1967: l_line_tbl(2).ordered_quantity2 := INV_CONVERT.INV_UM_CONVERT(p_ship_line_rec.inventory_item_id(p_index)-- INVCONV
1968: , NULL
1969: ,p_ship_line_rec.ship_from_org_id(p_index)
1970: ,5 --NULL
1971: ,l_line_tbl(2).ordered_quantity

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

1980: IF p_ship_line_rec.shipping_quantity2(p_index) IS NOT NULL THEN
1981: l_line_tbl(1).ordered_quantity2 := p_ship_line_rec.shipping_quantity2(p_index);
1982: ELSE --use conversion
1983: l_line_tbl(1).ordered_quantity2 :=
1984: INV_CONVERT.INV_UM_CONVERT( p_ship_line_rec.inventory_item_id(p_index)-- INVCONV
1985: ,NULL
1986: ,p_ship_line_rec.ship_from_org_id(p_index)
1987: ,5 --NULL
1988: ,l_line_tbl(1).ordered_quantity

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

2000: l_line_tbl(2).ordered_quantity2 := p_ship_line_rec.ordered_quantity2(p_index) -
2001: p_ship_line_rec.shipping_quantity2(p_index);
2002: --Check if order qty1 and order qty2 of split line are within deviation, only for positive qty.
2003: IF l_line_tbl(2).ordered_quantity2 > 0 THEN
2004: l_return := INV_CONVERT.Within_Deviation -- INVCONV
2005: ( p_organization_id => p_ship_line_rec.ship_from_org_id(p_index)
2006: , p_inventory_item_id => p_ship_line_rec.inventory_item_id(p_index)
2007: , p_lot_number => NULL -- p_lot_number -- INVCONV
2008: , p_precision => 5

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

2013: );
2014:
2015: IF l_return = 0 THEN --Not within deviation, hence use conversion
2016: l_line_tbl(2).ordered_quantity2 :=
2017: INV_CONVERT.INV_UM_CONVERT( p_ship_line_rec.inventory_item_id(p_index)-- INVCONV
2018: ,NULL
2019: ,p_ship_line_rec.ship_from_org_id(p_index)
2020: ,5 --NULL
2021: ,l_line_tbl(2).ordered_quantity

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

2027: END IF;
2028: END IF;
2029: ELSE --use conversion
2030: l_line_tbl(2).ordered_quantity2 :=
2031: INV_CONVERT.INV_UM_CONVERT( p_ship_line_rec.inventory_item_id(p_index)-- INVCONV
2032: ,NULL
2033: ,p_ship_line_rec.ship_from_org_id(p_index)
2034: ,5 --NULL
2035: ,l_line_tbl(2).ordered_quantity