[Home] [Help]
1: PACKAGE BODY wms_picking_pkg AS
2: /* $Header: WMSPLPDB.pls 120.37.12010000.2 2008/08/19 20:36:13 zhzhwang ship $ */
3:
4: g_trace_on NUMBER := NVL(fnd_profile.VALUE('INV_DEBUG_TRACE'), 2);
5: g_group_sequence_number NUMBER := 1;
17: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
18: BEGIN
19: IF g_trace_on = 1 THEN
20: inv_mobile_helper_functions.tracelog( p_err_msg => p_msg
21: , p_module => 'WMS_PICKING_PKG.' || p_api_name
22: , p_level => 4
23: );
24: END IF;
25: END;
1251: x_return_status := fnd_api.g_ret_sts_unexp_error;
1252: ROLLBACK TO next_task_inquiry;
1253:
1254: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1255: fnd_msg_pub.add_exc_msg('WMS_PICKING_PKG', 'GET_NEXT_TASK_INFO');
1256: END IF;
1257:
1258: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false, p_count => x_mesg_count, p_data => x_error_mesg);
1259: IF (l_debug = 1) THEN
2474:
2475: l_task_status NUMBER; -- bug 4310093
2476:
2477: l_debug NUMBER := NVL(fnd_profile.VALUE('INV_DEBUG_TRACE'), 0);
2478: l_api_name VARCHAR2(30) := 'WMS_PICKING_PKG.NEXT_TASK';
2479: --
2480: -- Bug 4722574
2481: --
2482: l_ignore_equipment NUMBER;
3496: qty_tbl(1).uom := p_transaction_UOM;
3497:
3498: IF WMS_CONTROL.G_CURRENT_RELEASE_LEVEL >= 120001 THEN
3499:
3500: wms_picking_pkg.split_task(
3501: p_source_transaction_number => p_transaction_temp_id
3502: , p_split_quantities => qty_tbl
3503: , p_commit => FND_API.G_FALSE
3504: , x_resultant_tasks => l_resultant_tasks
5232: END split_mtlt;
5233:
5234:
5235: --End Bug 6682436
5236: END wms_picking_pkg;