DBA Data[Home] [Help]

APPS.PER_JOB_EVALUATIONS_PKG dependencies on PER_JOB_EVALUATIONS

Line 1: PACKAGE BODY PER_JOB_EVALUATIONS_PKG as

1: PACKAGE BODY PER_JOB_EVALUATIONS_PKG as
2: /* $Header: pejbe01t.pkb 115.1 99/07/18 13:54:54 porting ship $ */
3: --
4: procedure system_measured_name(p_system_name in out varchar2,
5: p_system in varchar2,

Line 43: hr_utility.set_location('PER_JOB_EVALUATIONS_PKG.system_measured_name', 1);

39: hr_utility.set_message_token('STEP','1');
40: end if;
41: close csr_measured;
42: --
43: hr_utility.set_location('PER_JOB_EVALUATIONS_PKG.system_measured_name', 1);
44: --
45: end system_measured_name;
46: --
47: procedure get_next_sequence(p_job_evaluation_id in out number) is

Line 49: cursor csr_id is select per_job_evaluations_s.nextval

45: end system_measured_name;
46: --
47: procedure get_next_sequence(p_job_evaluation_id in out number) is
48: --
49: cursor csr_id is select per_job_evaluations_s.nextval
50: from sys.dual;
51: --
52: begin
53: --

Line 72: hr_utility.set_location('PER_JOB_EVALUATIONS_PKG.get_next_sequence', 1);

68: close csr_id;
69: --
70: end if;
71: --
72: hr_utility.set_location('PER_JOB_EVALUATIONS_PKG.get_next_sequence', 1);
73: --
74: end get_next_sequence;
75: --
76: procedure check_evaluation_exists (p_job_id in number,

Line 85: from per_job_evaluations je

81: p_rowid in varchar2,
82: p_evaluation_exists in out boolean) is
83: --
84: cursor csr_evaluation is select null
85: from per_job_evaluations je
86: where (job_evaluation_id <> p_job_evaluation_id
87: or p_job_evaluation_id is null)
88: and (je.job_id = p_job_id or p_job_id is null)
89: and (je.position_id = p_position_id

Line 106: hr_utility.set_location('PER_JOB_EVALUATIONS_PKG.check_evaluation_exists', 1);

102: p_evaluation_exists := csr_evaluation%FOUND;
103: close csr_evaluation;
104: --
105: --
106: hr_utility.set_location('PER_JOB_EVALUATIONS_PKG.check_evaluation_exists', 1);
107: --
108: end check_evaluation_exists;
109: --
110: END PER_JOB_EVALUATIONS_PKG;

Line 110: END PER_JOB_EVALUATIONS_PKG;

106: hr_utility.set_location('PER_JOB_EVALUATIONS_PKG.check_evaluation_exists', 1);
107: --
108: end check_evaluation_exists;
109: --
110: END PER_JOB_EVALUATIONS_PKG;