DBA Data[Home] [Help]

APPS.PER_JOBS_PKG dependencies on PER_JOB_EVALUATIONS

Line 251: from per_job_evaluations jev1

247: from per_job_requirements jre1
248: where jre1.job_id = p_job_id;
249: --
250: cursor csr_evaluation is select null
251: from per_job_evaluations jev1
252: where jev1.job_id = p_job_id;
253: --
254: cursor csr_elementp is select null
255: from per_career_path_elements cpe1

Line 295: -- per_job_evaluations, per_career_path_elements (check on parent and

291: --
292: begin
293: --
294: -- Check there are no values in per_valid_grades, per_job_requirements,
295: -- per_job_evaluations, per_career_path_elements (check on parent and
296: -- subordinate id), hr_all_positions_f, per_budget_elements,
297: -- PER_all_assignments, per_vacancies_f, per_element_links_f
298: --
299: --

Line 528: from per_job_evaluations jbe

524:
525: cursor csr_job_evaluations(p_job_id in number) is
526: select jbe.job_evaluation_id,
527: jbe.date_evaluated
528: from per_job_evaluations jbe
529: where jbe.job_id = csr_job_evaluations.p_job_id;
530:
531: --
532: begin