DBA Data[Home] [Help]

APPS.AHL_PRD_DISPOSITION_PVT dependencies on AHL_UTIL_UC_PKG

Line 5227: l_uc_header_id := AHL_UTIL_UC_PKG.get_uc_header_id(l_wo_instance_id);

5223: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, L_DEBUG_KEY, 'For work order id ' || p_workorder_id || ', wo_instance_id = ' || l_wo_instance_id);
5224: END IF;
5225:
5226: -- Get the top most unit containing the wo instance
5227: l_uc_header_id := AHL_UTIL_UC_PKG.get_uc_header_id(l_wo_instance_id);
5228: IF (l_uc_header_id IS NULL) THEN
5229: -- The task instance may have been removed from the Unit already.
5230: -- So, try to get the UC from the visit instance
5231: IF (l_task_instance_id IS NOT NULL AND l_visit_instance_id IS NOT NULL) THEN

Line 5233: l_uc_header_id := AHL_UTIL_UC_PKG.get_uc_header_id(l_visit_instance_id);

5229: -- The task instance may have been removed from the Unit already.
5230: -- So, try to get the UC from the visit instance
5231: IF (l_task_instance_id IS NOT NULL AND l_visit_instance_id IS NOT NULL) THEN
5232: -- WO instance is the task instance. So try with the visit instance
5233: l_uc_header_id := AHL_UTIL_UC_PKG.get_uc_header_id(l_visit_instance_id);
5234: ELSE
5235: -- WO instance is already the visit instance
5236: NULL;
5237: END IF;

Line 5614: AHL_Util_UC_Pkg.GetCSI_Transaction_ID('UC_UPDATE', l_transaction_type_id, l_return_val);

5610: FETCH ahl_wip_location_csr INTO l_instance_rec.LOCATION_ID ;
5611: CLOSE ahl_wip_location_csr;
5612:
5613: -- get transaction_type_id .
5614: AHL_Util_UC_Pkg.GetCSI_Transaction_ID('UC_UPDATE', l_transaction_type_id, l_return_val);
5615: IF NOT(l_return_val) THEN
5616: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
5617: END IF;
5618: l_csi_transaction_rec.transaction_type_id := l_transaction_type_id;