DBA Data[Home] [Help]

APPS.WMS_COSTGROUPENGINE_PVT dependencies on WMS_STRATEGY_PVT

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

453: End if;
454: if l_return_status = fnd_api.g_ret_sts_unexp_error then
455: if l_debug = 1 THEN
456: log_error(l_api_name, 'strat_search_unexp_err',
457: 'Unexpected error in wms_strategy_pvt search procedure');
458: end if;
459: raise fnd_api.g_exc_unexpected_error;
460:
461: elsif l_return_status = fnd_api.g_ret_sts_error then

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

460:
461: elsif l_return_status = fnd_api.g_ret_sts_error then
462: if l_debug = 1 then
463: log_error(l_api_name, 'strat_search_err',
464: 'Error in wms_strategy_pvt search procedure');
465: end if;
466: raise fnd_api.g_exc_error;
467: elsif l_return_status = fnd_api.g_ret_sts_success then
468: --If l_rules_engine_mode = 1 then

Line 524: wms_strategy_pvt.InitStrategyRules ( l_return_status

520: end if;
521: -- Get rules within that strategy
522: -- Initialize the internal rules table
523: IF l_strategy_id IS NOT NULL THEN
524: wms_strategy_pvt.InitStrategyRules ( l_return_status
525: ,x_msg_count
526: ,x_msg_data
527: ,l_strategy_id );
528:

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

528:
529: if l_return_status = fnd_api.g_ret_sts_unexp_error then
530: if l_debug = 1 then
531: log_error(l_api_name, 'init_rules_unexp_err',
532: 'Unexpected error in wms_strategy_pvt InitStrategyRules');
533: end if;
534: raise fnd_api.g_exc_unexpected_error;
535: elsif l_return_status = fnd_api.g_ret_sts_error then
536: if l_debug = 1 then

Line 538: 'Error in wms_strategy_pvt InitStrategyRules');

534: raise fnd_api.g_exc_unexpected_error;
535: elsif l_return_status = fnd_api.g_ret_sts_error then
536: if l_debug = 1 then
537: log_error(l_api_name, 'init_rules_err',
538: 'Error in wms_strategy_pvt InitStrategyRules');
539: end if;
540: raise fnd_api.g_exc_error;
541: end if;
542: END IF;