DBA Data[Home] [Help]

APPS.PA_PROGRESS_REPORT_PVT dependencies on PA_PROJECTS_ALL

Line 3759: FROM pa_projects_all

3755: CURSOR get_dates IS
3756: SELECT scheduled_start_date, scheduled_finish_date,
3757: start_date,completion_date,actual_start_date
3758: ,actual_finish_date
3759: FROM pa_projects_all
3760: WHERE project_id = l_project_id;
3761:
3762: BEGIN
3763:

Line 3844: -- we need to update the dates from PA_PROJECTS_ALL table

3840: ROLLBACK TO update_project_perccomplete;
3841: RETURN;
3842: END IF;
3843:
3844: -- we need to update the dates from PA_PROJECTS_ALL table
3845: OPEN get_dates;
3846: fetch get_dates INTO l_sch_start_date, l_sch_end_date,
3847: l_est_start_date, l_est_end_date, l_act_start_date,
3848: l_act_end_date;