DBA Data[Home] [Help]

APPS.JAI_OM_WDD_TRIGGER_PKG dependencies on INV_CONVERT

Line 1941: manufacturing organization Inv_Convert.inv_um_conversion should be executed. so included this logic in the else part.

1937: Fix: 1. The issue was beacuse a conversion factor was getting multiplied to the tax amount while matching.
1938: Hence the excise duty reflected was wrong. so while matching the receipts the conversion factor should be 1
1939: and for other cases it should be as it is. Thus modified the code for the same.
1940: assigned the v_conversion_rate to 1 in case of matching and for
1941: manufacturing organization Inv_Convert.inv_um_conversion should be executed. so included this logic in the else part.
1942: 2. Modified the Get_Tax_Lines_Details_Cur cursor. changed the rounding factor to 2 when the
1943: rounding factor is null.
1944:
1945:

Line 2273: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,

2269: --CLOSE uom_code;
2270:
2271: /*included the UOM conversion logic into the else part Earlier it was outside the end of If condition.
2272: added by JMEENA for bug#6280735 (FP 6164922) */
2273: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,
2274: v_order_quantity_uom,
2275: v_inventory_item_id,
2276: v_conversion_rate);
2277: IF NVL(v_conversion_rate, 0) <= 0 THEN

Line 2278: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,

2274: v_order_quantity_uom,
2275: v_inventory_item_id,
2276: v_conversion_rate);
2277: IF NVL(v_conversion_rate, 0) <= 0 THEN
2278: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,
2279: v_order_quantity_uom,
2280: 0,
2281: v_conversion_rate);
2282: IF NVL(v_conversion_rate, 0) <= 0 THEN

Line 2552: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,

2548: -- multiplied and correctly done with selling price and assessable value.
2549: OPEN uom_code;
2550: FETCH uom_code INTO v_order_quantity_uom;
2551: CLOSE uom_code;
2552: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,
2553: v_order_quantity_uom,
2554: v_inventory_item_id,
2555: v_conversion_rate);
2556: IF NVL(v_conversion_rate, 0) <= 0 THEN

Line 2557: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,

2553: v_order_quantity_uom,
2554: v_inventory_item_id,
2555: v_conversion_rate);
2556: IF NVL(v_conversion_rate, 0) <= 0 THEN
2557: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,
2558: v_order_quantity_uom,
2559: 0,
2560: v_conversion_rate);
2561: IF NVL(v_conversion_rate, 0) <= 0 THEN