DBA Data[Home] [Help]

APPS.INV_PICK_SLIP_REPORT dependencies on WMS_INSTALL

Line 11: FUNCTION chk_wms_install(p_organization_id IN NUMBER)

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
13: l_msg_count NUMBER;
14: l_msg_data VARCHAR2(2000);
15: l_api_name CONSTANT VARCHAR(30) := 'CHK_WMS_INSTALL';

Line 15: l_api_name CONSTANT VARCHAR(30) := 'CHK_WMS_INSTALL';

11: FUNCTION chk_wms_install(p_organization_id IN NUMBER)
12: RETURN VARCHAR2 IS
13: l_msg_count NUMBER;
14: l_msg_data VARCHAR2(2000);
15: l_api_name CONSTANT VARCHAR(30) := 'CHK_WMS_INSTALL';
16: l_return_status VARCHAR2(1);
17: BEGIN
18: IF wms_install.check_install(x_return_status => l_return_status, x_msg_count => l_msg_count, x_msg_data => l_msg_data
19: , p_organization_id => p_organization_id) THEN

Line 18: IF wms_install.check_install(x_return_status => l_return_status, x_msg_count => l_msg_count, x_msg_data => l_msg_data

14: l_msg_data VARCHAR2(2000);
15: l_api_name CONSTANT VARCHAR(30) := 'CHK_WMS_INSTALL';
16: l_return_status VARCHAR2(1);
17: BEGIN
18: IF wms_install.check_install(x_return_status => l_return_status, x_msg_count => l_msg_count, x_msg_data => l_msg_data
19: , p_organization_id => p_organization_id) THEN
20: RETURN 'TRUE';
21: ELSE
22: RETURN 'FALSE';

Line 31: END chk_wms_install;

27: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
28: END IF;
29:
30: RETURN 'FALSE';
31: END chk_wms_install;
32:
33: PROCEDURE run_detail_engine(
34: x_return_status OUT NOCOPY VARCHAR2
35: , p_org_id NUMBER

Line 414: IF (wms_install.check_install(

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
412: -- we let the Move Order Allocation process succeed
413: -- irrespective of DeviceIntegration succeed or fail.
414: IF (wms_install.check_install(
415: x_return_status => x_return_status,
416: x_msg_count => l_msg_count,
417: x_msg_data => l_msg_data,
418: p_organization_id => p_org_id