DBA Data[Home] [Help]

APPS.INV_KANBAN_PVT dependencies on INV_PICK_WAVE_PICK_CONFIRM_PUB

Line 4369: inv_pick_wave_pick_confirm_pub.tracelog('In Auto_Allocate_Kanban ...','INV_KANBAN_PVT');

4365:
4366: l_mo_line_rec mo_lines_cur%ROWTYPE;
4367: BEGIN
4368: IF (l_debug = 1 ) THEN
4369: inv_pick_wave_pick_confirm_pub.tracelog('In Auto_Allocate_Kanban ...','INV_KANBAN_PVT');
4370: END IF;
4371:
4372: OPEN mo_lines_cur;
4373:

Line 4416: inv_pick_wave_pick_confirm_pub.tracelog('In Auto_Allocate_Kanban : the line '||l_mo_line_rec.line_id ||' return status :'||

4412: set quantity_detailed = l_detailed_quantity
4413: where line_id=l_mo_line_rec.line_id;
4414:
4415: IF (l_debug = 1 ) THEN
4416: inv_pick_wave_pick_confirm_pub.tracelog('In Auto_Allocate_Kanban : the line '||l_mo_line_rec.line_id ||' return status :'||
4417: x_return_status || 'number_of_rows:' || l_number_of_rows ||' detailed_qty:'||l_detailed_quantity ||
4418: ' revision:'||l_revision||' from_locator_id:'||l_from_locator_id||' to_location:'||l_to_locator_id ||
4419: 'lot_number:' || l_lot_number || ' transaction_temp_id' || l_txn_header_id ,'INV_KANBAN_PVT');
4420: END IF;

Line 4437: inv_pick_wave_pick_confirm_pub.tracelog('In Auto_Allocate_Kanban : return status :'||x_return_status||' msg:'||x_msg_data,'INV_KANBAN_PVT');

4433: x_return_status := FND_API.G_RET_STS_SUCCESS;
4434: END IF;
4435:
4436: IF (l_debug = 1 ) THEN
4437: inv_pick_wave_pick_confirm_pub.tracelog('In Auto_Allocate_Kanban : return status :'||x_return_status||' msg:'||x_msg_data,'INV_KANBAN_PVT');
4438: END IF;
4439: EXCEPTION
4440: WHEN OTHERS THEN
4441: IF (l_debug = 1 ) THEN

Line 4442: inv_pick_wave_pick_confirm_pub.tracelog('In Auto_Allocate_Kanban : Exception : When Others','INV_KANBAN_PVT');

4438: END IF;
4439: EXCEPTION
4440: WHEN OTHERS THEN
4441: IF (l_debug = 1 ) THEN
4442: inv_pick_wave_pick_confirm_pub.tracelog('In Auto_Allocate_Kanban : Exception : When Others','INV_KANBAN_PVT');
4443: x_return_status := FND_API.G_RET_STS_ERROR;
4444: END IF;
4445: END Auto_Allocate_Kanban;
4446: