DBA Data[Home] [Help]

APPS.PA_PROGRESS_REPORT_PVT dependencies on PA_PROJECTS_ALL

Line 3760: FROM pa_projects_all

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

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

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