DBA Data[Home] [Help]

APPS.INL_SHIPMENT_PVT dependencies on INV_CONVERT

Line 13623: l_debug_info := 'Call INV_CONVERT.within_deviation for validating deviation.';

13619: l_secondary_qty := (l_secondary_qty * -1);
13620: END IF;
13621:
13622: -- Check if quantities are in deviation
13623: l_debug_info := 'Call INV_CONVERT.within_deviation for validating deviation.';
13624: INL_LOGGING_PVT.Log_Statement (p_module_name => g_module_name,
13625: p_procedure_name => l_api_name,
13626: p_debug_info => l_debug_info);
13627: -- Bug 15827165

Line 13629: IF (INV_CONVERT.within_deviation (p_organization_id,

13625: p_procedure_name => l_api_name,
13626: p_debug_info => l_debug_info);
13627: -- Bug 15827165
13628: IF(l_secondary_qty IS NOT NULL AND p_secondary_uom_code IS NOT NULL) THEN
13629: IF (INV_CONVERT.within_deviation (p_organization_id,
13630: p_inventory_item_id,
13631: l_lot_number,
13632: NULL,
13633: l_primary_qty,

Line 13788: l_debug_info := 'Call INV_CONVERT.inv_um_convert for deriving Secondary Qty based on Transaction Qty.';

13784: ((l_secondary_default_ind = 'N') AND (p_txn_uom_code = p_secondary_uom_code)) THEN
13785:
13786: -- Branch depending on calling field. 'T' Transaction Qty, 'S' Secondary Qty.
13787: IF (p_calling_field = 'T') THEN
13788: l_debug_info := 'Call INV_CONVERT.inv_um_convert for deriving Secondary Qty based on Transaction Qty.';
13789: INL_LOGGING_PVT.Log_Statement (p_module_name => g_module_name,
13790: p_procedure_name => l_func_name,
13791: p_debug_info => l_debug_info);
13792:

Line 13794: l_converted_qty := INV_CONVERT.inv_um_convert(p_inventory_item_id,

13790: p_procedure_name => l_func_name,
13791: p_debug_info => l_debug_info);
13792:
13793: -- In this case we will use Primary Qty data as base to retrieve Secondary Qty
13794: l_converted_qty := INV_CONVERT.inv_um_convert(p_inventory_item_id,
13795: l_lot_number,
13796: p_organization_id,
13797: NULL,
13798: p_txn_qty,

Line 13813: l_debug_info := 'Call INV_CONVERT.inv_um_convert for deriving Transaction Qty based on Secondary Qty.';

13809: FND_MESSAGE.SET_NAME('INV','INV_NO_CONVERSION_ERR');
13810: FND_MSG_PUB.ADD;
13811: END IF;
13812: ELSIF (p_calling_field = 'S') THEN
13813: l_debug_info := 'Call INV_CONVERT.inv_um_convert for deriving Transaction Qty based on Secondary Qty.';
13814: INL_LOGGING_PVT.Log_Statement (p_module_name => g_module_name,
13815: p_procedure_name => l_func_name,
13816: p_debug_info => l_debug_info) ;
13817:

Line 13819: l_converted_qty := INV_CONVERT.inv_um_convert(p_inventory_item_id,

13815: p_procedure_name => l_func_name,
13816: p_debug_info => l_debug_info) ;
13817:
13818: -- In this case we will use Secondary Qty data as base to retrieve Transaction Qty
13819: l_converted_qty := INV_CONVERT.inv_um_convert(p_inventory_item_id,
13820: l_lot_number,
13821: p_organization_id,
13822: NULL,
13823: p_secondary_qty,