DBA Data[Home] [Help]

APPS.AHL_UMP_UNITMAINT_PVT dependencies on AHL_UMP_PROCESSUNIT_PVT

Line 242: AHL_UMP_ProcessUnit_PVT.Process_MRAffected_Units (

238:
239: -- Depending on input parameters call procedures for processing.
240: IF (l_mr_id IS NOT NULL) THEN
241: -- process all units affected by the MR.
242: AHL_UMP_ProcessUnit_PVT.Process_MRAffected_Units (
243: x_msg_count => x_msg_count,
244: x_msg_data => x_msg_data,
245: x_return_status => x_return_status,
246: p_mr_header_id => l_mr_id);

Line 250: AHL_UMP_ProcessUnit_PVT.Process_Unit (

246: p_mr_header_id => l_mr_id);
247:
248: ELSIF (l_csi_item_instance_id IS NOT NULL) THEN
249: -- Call Process Unit for the item instance.
250: AHL_UMP_ProcessUnit_PVT.Process_Unit (
251: x_msg_count => x_msg_count,
252: x_msg_data => x_msg_data,
253: x_return_status => x_return_status,
254: p_csi_item_instance_id => l_csi_item_instance_id);

Line 259: AHL_UMP_ProcessUnit_PVT.Process_All_Units (

255:
256:
257: ELSE
258: -- process all units.
259: AHL_UMP_ProcessUnit_PVT.Process_All_Units (
260: x_msg_count => x_msg_count,
261: x_msg_data => x_msg_data,
262: x_return_status => x_return_status);
263:

Line 448: AHL_UMP_ProcessUnit_PVT.Process_PM_Contracts

444: -- Depending on input parameters call procedures for processing.
445: -- Tamal: Bug #4207212, #4114368 Begin
446: IF (l_contract_number IS NOT NULL and ahl_util_pkg.is_pm_installed = 'Y') THEN
447: -- Process all units affected by the contract number...
448: AHL_UMP_ProcessUnit_PVT.Process_PM_Contracts
449: (
450: p_commit => FND_API.G_TRUE,
451: p_init_msg_list => FND_API.G_FALSE,
452: x_msg_count => x_msg_count,

Line 462: AHL_UMP_ProcessUnit_PVT.Process_MRAffected_Units (

458: );
459: -- Tamal: Bug #4207212, #4114368 End
460: ELSIF (l_mr_id IS NOT NULL) THEN
461: -- process all units affected by the MR.
462: AHL_UMP_ProcessUnit_PVT.Process_MRAffected_Units (
463: p_commit => FND_API.G_TRUE,
464: x_msg_count => x_msg_count,
465: x_msg_data => x_msg_data,
466: x_return_status => x_return_status,

Line 475: AHL_UMP_ProcessUnit_PVT.Process_Unit (

471: p_process_option => p_process_option);
472:
473: ELSIF (l_csi_item_instance_id IS NOT NULL) THEN
474: -- Call Process Unit for the item instance.
475: AHL_UMP_ProcessUnit_PVT.Process_Unit (
476: p_commit => FND_API.G_TRUE,
477: x_msg_count => x_msg_count,
478: x_msg_data => x_msg_data,
479: x_return_status => x_return_status,

Line 485: AHL_UMP_ProcessUnit_PVT.Process_All_Units (

481: p_concurrent_flag => p_concurrent_flag);
482:
483: ELSE
484: -- process all units.
485: AHL_UMP_ProcessUnit_PVT.Process_All_Units (
486: p_commit => FND_API.G_TRUE,
487: x_msg_count => x_msg_count,
488: x_msg_data => x_msg_data,
489: x_return_status => x_return_status,