DBA Data[Home] [Help]

APPS.INV_PICK_SLIP_REPORT dependencies on INV_LOG_UTIL

Line 8: inv_log_util.trace(p_message, g_pkg_name || '.' || p_api_name, 9);

4: g_pkg_name CONSTANT VARCHAR2(30) := 'INV_PICK_SLIP_REPORT';
5:
6: PROCEDURE mydebug(p_message VARCHAR2, p_api_name VARCHAR2) IS
7: BEGIN
8: inv_log_util.trace(p_message, g_pkg_name || '.' || p_api_name, 9);
9: END;
10:
11: FUNCTION chk_wms_install(p_organization_id IN NUMBER)
12: RETURN VARCHAR2 IS

Line 400: inv_log_util.TRACE('Lines for header '||v_mo_header_rec.header_id||' are locked', 'INV_UTILITIES', 9);

396: EXCEPTION -- Added 3772012
397: WHEN record_locked THEN
398: fnd_message.set_name('INV', 'INV_MO_LOCKED_SO');
399: IF (l_debug = 1 ) THEN
400: inv_log_util.TRACE('Lines for header '||v_mo_header_rec.header_id||' are locked', 'INV_UTILITIES', 9);
401: END IF;
402: fnd_msg_pub.ADD;
403: END;
404: END LOOP;

Line 407: inv_log_util.TRACE('calling Device Integration',l_api_name);

403: END;
404: END LOOP;
405:
406: IF (l_debug = 1) THEN
407: inv_log_util.TRACE('calling Device Integration',l_api_name);
408: END IF;
409: -- Call Device Integration API to send the details of this
410: -- PickRelease Wave for Move Order Allocation to devices, if it is a WMS organization.
411: -- Note: We don't check for the return condition of this API as

Line 430: inv_log_util.TRACE('Device_API: returned status:'||x_return_status, l_api_name);

426: x_msg_count => l_msg_count,
427: x_msg_data => l_msg_data);
428:
429: IF (l_debug = 1) THEN
430: inv_log_util.TRACE('Device_API: returned status:'||x_return_status, l_api_name);
431: END IF;
432: END IF;
433:
434: IF c_move_order_lines%ISOPEN THEN --Added to fix Bug# 4003379