DBA Data[Home] [Help]

APPS.WMS_COSTGROUPENGINE_PVT dependencies on WMS_STRATEGY_PVT

Line 406: 'Unexpected error in wms_strategy_pvt search procedure');

402: End if;
403: if l_return_status = fnd_api.g_ret_sts_unexp_error then
404: if l_debug = 1 THEN
405: log_error(l_api_name, 'strat_search_unexp_err',
406: 'Unexpected error in wms_strategy_pvt search procedure');
407: end if;
408: raise fnd_api.g_exc_unexpected_error;
409:
410: elsif l_return_status = fnd_api.g_ret_sts_error then

Line 413: 'Error in wms_strategy_pvt search procedure');

409:
410: elsif l_return_status = fnd_api.g_ret_sts_error then
411: if l_debug = 1 then
412: log_error(l_api_name, 'strat_search_err',
413: 'Error in wms_strategy_pvt search procedure');
414: end if;
415: raise fnd_api.g_exc_error;
416: elsif l_return_status = fnd_api.g_ret_sts_success then
417: --If l_rules_engine_mode = 1 then

Line 473: wms_strategy_pvt.InitStrategyRules ( l_return_status

469: end if;
470: -- Get rules within that strategy
471: -- Initialize the internal rules table
472: IF l_strategy_id IS NOT NULL THEN
473: wms_strategy_pvt.InitStrategyRules ( l_return_status
474: ,x_msg_count
475: ,x_msg_data
476: ,l_strategy_id );
477:

Line 481: 'Unexpected error in wms_strategy_pvt InitStrategyRules');

477:
478: if l_return_status = fnd_api.g_ret_sts_unexp_error then
479: if l_debug = 1 then
480: log_error(l_api_name, 'init_rules_unexp_err',
481: 'Unexpected error in wms_strategy_pvt InitStrategyRules');
482: end if;
483: raise fnd_api.g_exc_unexpected_error;
484: elsif l_return_status = fnd_api.g_ret_sts_error then
485: if l_debug = 1 then

Line 487: 'Error in wms_strategy_pvt InitStrategyRules');

483: raise fnd_api.g_exc_unexpected_error;
484: elsif l_return_status = fnd_api.g_ret_sts_error then
485: if l_debug = 1 then
486: log_error(l_api_name, 'init_rules_err',
487: 'Error in wms_strategy_pvt InitStrategyRules');
488: end if;
489: raise fnd_api.g_exc_error;
490: end if;
491: END IF;