DBA Data[Home] [Help]

APPS.INV_KANBAN_PVT dependencies on INV_PICK_WAVE_PICK_CONFIRM_PUB

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

3948:
3949: l_mo_line_rec mo_lines_cur%ROWTYPE;
3950: BEGIN
3951: IF (l_debug = 1 ) THEN
3952: inv_pick_wave_pick_confirm_pub.tracelog('In Auto_Allocate_Kanban ...','INV_KANBAN_PVT');
3953: END IF;
3954:
3955: OPEN mo_lines_cur;
3956:

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

3995: set quantity_detailed = l_detailed_quantity
3996: where line_id=l_mo_line_rec.line_id;
3997:
3998: IF (l_debug = 1 ) THEN
3999: inv_pick_wave_pick_confirm_pub.tracelog('In Auto_Allocate_Kanban : the line '||l_mo_line_rec.line_id ||' return status :'||
4000: x_return_status || 'number_of_rows:' || l_number_of_rows ||' detailed_qty:'||l_detailed_quantity ||
4001: ' revision:'||l_revision||' from_locator_id:'||l_from_locator_id||' to_location:'||l_to_locator_id ||
4002: 'lot_number:' || l_lot_number || ' transaction_temp_id' || l_txn_header_id ,'INV_KANBAN_PVT');
4003: END IF;

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

4016: x_return_status := FND_API.G_RET_STS_SUCCESS;
4017: END IF;
4018:
4019: IF (l_debug = 1 ) THEN
4020: inv_pick_wave_pick_confirm_pub.tracelog('In Auto_Allocate_Kanban : return status :'||x_return_status||' msg:'||x_msg_data,'INV_KANBAN_PVT');
4021: END IF;
4022: EXCEPTION
4023: WHEN OTHERS THEN
4024: IF (l_debug = 1 ) THEN

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

4021: END IF;
4022: EXCEPTION
4023: WHEN OTHERS THEN
4024: IF (l_debug = 1 ) THEN
4025: inv_pick_wave_pick_confirm_pub.tracelog('In Auto_Allocate_Kanban : Exception : When Others','INV_KANBAN_PVT');
4026: x_return_status := FND_API.G_RET_STS_ERROR;
4027: END IF;
4028: END Auto_Allocate_Kanban;
4029: