DBA Data[Home] [Help]

APPS.AHL_VWP_RULES_PVT dependencies on AHL_VWP_TIMES_PVT

Line 1568: 'Before calling AHL_VWP_TIMES_PVT.Adjust_Task_Times.');

1564: --Now adjust the times derivation for task
1565: IF (l_log_statement >= l_log_current_level) THEN
1566: fnd_log.string(l_log_statement,
1567: L_DEBUG_KEY,
1568: 'Before calling AHL_VWP_TIMES_PVT.Adjust_Task_Times.');
1569: END IF;
1570:
1571: -- SKPATHAK :: Bug 8343599 :: 14-APR-2009
1572: -- Included the new in param p_task_start_date

Line 1575: AHL_VWP_TIMES_PVT.Adjust_Task_Times

1571: -- SKPATHAK :: Bug 8343599 :: 14-APR-2009
1572: -- Included the new in param p_task_start_date
1573: -- SKPATHAK :: ER: 9147951 :: 11-JAN-2010 :: Call Adjust_Task_Times only if past date is null
1574: IF p_past_task_start_date IS NULL THEN
1575: AHL_VWP_TIMES_PVT.Adjust_Task_Times
1576: (p_api_version => 1.0,
1577: p_init_msg_list => Fnd_Api.G_FALSE,
1578: p_commit => Fnd_Api.G_FALSE,
1579: p_validation_level => Fnd_Api.G_VALID_LEVEL_FULL,

Line 1590: 'After calling AHL_VWP_TIMES_PVT.Adjust_Task_Times. Return Status = ' ||

1586:
1587: IF (l_log_statement >= l_log_current_level) THEN
1588: fnd_log.string(l_log_statement,
1589: L_DEBUG_KEY,
1590: 'After calling AHL_VWP_TIMES_PVT.Adjust_Task_Times. Return Status = ' ||
1591: l_return_status);
1592: END IF;
1593:
1594: l_msg_count := Fnd_Msg_Pub.count_msg;

Line 1599: 'Errors from AHL_VWP_TIMES_PVT.Adjust_Task_Times. Message count: ' ||

1595: IF l_msg_count > 0 OR l_return_status <> Fnd_Api.g_ret_sts_success THEN
1596: IF (l_log_statement >= l_log_current_level) THEN
1597: fnd_log.string(l_log_statement,
1598: L_DEBUG_KEY,
1599: 'Errors from AHL_VWP_TIMES_PVT.Adjust_Task_Times. Message count: ' ||
1600: l_msg_count || ', message data: ' || l_msg_data);
1601: END IF;
1602: x_msg_count := l_msg_count;
1603: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;

Line 3567: AHL_VWP_TIMES_PVT.compute_date(l_visit_start_date, l_dept_id, l_cum_duration);

3563: FETCH c_visit INTO l_visit_start_date,l_dept_id;
3564: CLOSE c_visit;
3565: -- Find the planned start time of the stage in which this task falls
3566: l_stage_planned_start_time :=
3567: AHL_VWP_TIMES_PVT.compute_date(l_visit_start_date, l_dept_id, l_cum_duration);
3568:
3569: -- Validate that the any of the tasks does not start before the stage starts
3570: IF p_task_rec.past_task_start_date < l_stage_planned_start_time THEN
3571: Fnd_Message.SET_NAME('AHL','AHL_VWP_STAGE_TASK_DATE_INVLD');