DBA Data[Home] [Help]

APPS.JAI_OM_WDD_TRIGGER_PKG dependencies on INV_CONVERT

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

2177: Fix: 1. The issue was beacuse a conversion factor was getting multiplied to the tax amount while matching.
2178: Hence the excise duty reflected was wrong. so while matching the receipts the conversion factor should be 1
2179: and for other cases it should be as it is. Thus modified the code for the same.
2180: assigned the v_conversion_rate to 1 in case of matching and for
2181: manufacturing organization Inv_Convert.inv_um_conversion should be executed. so included this logic in the else part.
2182: 2. Modified the Get_Tax_Lines_Details_Cur cursor. changed the rounding factor to 2 when the
2183: rounding factor is null.
2184:
2185: 34 14-May-2009 CSahoo for bug#8500697, File Version 120.9.12010000.4, 120.9.12010000.5

Line 2626: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,

2622: --CLOSE uom_code;
2623:
2624: /*included the UOM conversion logic into the else part Earlier it was outside the end of If condition.
2625: added by JMEENA for bug#6280735 (FP 6164922) */
2626: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,
2627: v_order_quantity_uom,
2628: v_inventory_item_id,
2629: v_conversion_rate);
2630: IF NVL(v_conversion_rate, 0) <= 0 THEN

Line 2631: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,

2627: v_order_quantity_uom,
2628: v_inventory_item_id,
2629: v_conversion_rate);
2630: IF NVL(v_conversion_rate, 0) <= 0 THEN
2631: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,
2632: v_order_quantity_uom,
2633: 0,
2634: v_conversion_rate);
2635: IF NVL(v_conversion_rate, 0) <= 0 THEN

Line 2918: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,

2914: -- multiplied and correctly done with selling price and assessable value.
2915: OPEN uom_code;
2916: FETCH uom_code INTO v_order_quantity_uom;
2917: CLOSE uom_code;
2918: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,
2919: v_order_quantity_uom,
2920: v_inventory_item_id,
2921: v_conversion_rate);
2922: IF NVL(v_conversion_rate, 0) <= 0 THEN

Line 2923: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,

2919: v_order_quantity_uom,
2920: v_inventory_item_id,
2921: v_conversion_rate);
2922: IF NVL(v_conversion_rate, 0) <= 0 THEN
2923: Inv_Convert.inv_um_conversion(v_Requested_Quantity_Uom,
2924: v_order_quantity_uom,
2925: 0,
2926: v_conversion_rate);
2927: IF NVL(v_conversion_rate, 0) <= 0 THEN