13275:
13276: cursor cur_prev_planned_assgn_effort(p_project_id NUMBER, p_task_id NUMBER
13277: , p_structure_version_id NUMBER, p_res_assign_id NUMBER) is
13278: select planned_quantity
13279: from pa_task_assignments_v
13280: where project_id = p_project_id
13281: and structure_version_id = p_structure_version_id
13282: and resource_assignment_id = p_res_assign_id
13283: and task_id = p_task_id;