DBA Data[Home] [Help]

APPS.WMS_ENGINE_PVT dependencies on WMS_ENGINE_PVT

Line 1: PACKAGE BODY wms_engine_pvt AS

1: PACKAGE BODY wms_engine_pvt AS
2: /* $Header: WMSVPPEB.pls 120.11.12010000.4 2008/12/08 09:53:46 abasheer ship $ */
3: --
4: -- File : WMSVPPEB.pls
5: -- Content : WMS_Engine_PVT package body

Line 5: -- Content : WMS_Engine_PVT package body

1: PACKAGE BODY wms_engine_pvt AS
2: /* $Header: WMSVPPEB.pls 120.11.12010000.4 2008/12/08 09:53:46 abasheer ship $ */
3: --
4: -- File : WMSVPPEB.pls
5: -- Content : WMS_Engine_PVT package body
6: -- Description : wms rules engine private API's
7: -- Notes :
8: -- Modified : 30/10/98 ckuenzel created orginal file in inventory
9: -- 02/08/99 mzeckzer changed

Line 13: g_pkg_name CONSTANT VARCHAR2(30) := 'WMS_Engine_PVT';

9: -- 02/08/99 mzeckzer changed
10: -- 07/31/99 bitang created in wms
11: -- 05/12/05 grao added logic for rule search - 'K'
12: --
13: g_pkg_name CONSTANT VARCHAR2(30) := 'WMS_Engine_PVT';
14: g_debug NUMBER;
15: g_use_rule VARCHAR2(1) := 'Y' ;
16: -- [g_use_rule VARCHAR2(1) := 'Y'; used to track if stg/rule
17: -- search API is required to be called or not ]

Line 2542: IF ((WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE = 'WMS_ATT_SUB_STATUS_NA' ) or

2538: END IF;
2539: IF l_return_status <> fnd_api.g_ret_sts_success then
2540: RAISE fnd_api.g_exc_error;
2541: ELSE
2542: IF ((WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE = 'WMS_ATT_SUB_STATUS_NA' ) or
2543: (WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE = 'WMS_ATT_SERIAL_STATUS_NA' )) then
2544: IF l_debug = 1 THEN
2545: log_event(l_api_name, 'Create Suggestions',
2546: 'Quick Pick Validation failure message '

Line 2543: (WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE = 'WMS_ATT_SERIAL_STATUS_NA' )) then

2539: IF l_return_status <> fnd_api.g_ret_sts_success then
2540: RAISE fnd_api.g_exc_error;
2541: ELSE
2542: IF ((WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE = 'WMS_ATT_SUB_STATUS_NA' ) or
2543: (WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE = 'WMS_ATT_SERIAL_STATUS_NA' )) then
2544: IF l_debug = 1 THEN
2545: log_event(l_api_name, 'Create Suggestions',
2546: 'Quick Pick Validation failure message '
2547: || WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE );

Line 2547: || WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE );

2543: (WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE = 'WMS_ATT_SERIAL_STATUS_NA' )) then
2544: IF l_debug = 1 THEN
2545: log_event(l_api_name, 'Create Suggestions',
2546: 'Quick Pick Validation failure message '
2547: || WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE );
2548: END IF;
2549: ROLLBACK TO create_suggestions_sa;
2550: exit;
2551: END IF;

Line 2657: x_msg_data := nvl(WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE, '');

2653: END IF;
2654:
2655: -- Patchset 'J' : New Error_messages
2656: -- Adding the Suggestion failure message to the message stack
2657: x_msg_data := nvl(WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE, '');
2658:
2659: --BUG 3440344: We should not add message to the stack if
2660: --G_SUGG_FAILURE_MESSAGE is null
2661: IF x_msg_data IS NOT NULL OR x_msg_data <> '' THEN

Line 2662: FND_MESSAGE.SET_NAME('WMS',WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE);

2658:
2659: --BUG 3440344: We should not add message to the stack if
2660: --G_SUGG_FAILURE_MESSAGE is null
2661: IF x_msg_data IS NOT NULL OR x_msg_data <> '' THEN
2662: FND_MESSAGE.SET_NAME('WMS',WMS_ENGINE_PVT.G_SUGG_FAILURE_MESSAGE);
2663: FND_MSG_PUB.ADD;
2664: END IF;
2665:
2666: IF l_debug = 1 THEN

Line 2702: END wms_engine_pvt;

2698: END IF;
2699:
2700: END create_suggestions;
2701: --
2702: END wms_engine_pvt;