DBA Data[Home] [Help]

APPS.PER_JOB_EVALUATIONS_PKG dependencies on HR_UTILITY

Line 26: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');

22: --
23: open csr_system;
24: fetch csr_system into p_system_name;
25: if (CSR_SYSTEM%NOTFOUND) then
26: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
27: hr_utility.set_message_token('PROCEDURE','system_measured_name');
28: hr_utility.set_message_token('STEP','1');
29: end if;
30: close csr_system;

Line 27: hr_utility.set_message_token('PROCEDURE','system_measured_name');

23: open csr_system;
24: fetch csr_system into p_system_name;
25: if (CSR_SYSTEM%NOTFOUND) then
26: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
27: hr_utility.set_message_token('PROCEDURE','system_measured_name');
28: hr_utility.set_message_token('STEP','1');
29: end if;
30: close csr_system;
31: --

Line 28: hr_utility.set_message_token('STEP','1');

24: fetch csr_system into p_system_name;
25: if (CSR_SYSTEM%NOTFOUND) then
26: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
27: hr_utility.set_message_token('PROCEDURE','system_measured_name');
28: hr_utility.set_message_token('STEP','1');
29: end if;
30: close csr_system;
31: --
32: -- Retrieve the measured in name

Line 37: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');

33: --
34: open csr_measured;
35: fetch csr_measured into p_measured_in_name;
36: if (CSR_MEASURED%NOTFOUND) then
37: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE','system_measured_name');
39: hr_utility.set_message_token('STEP','1');
40: end if;
41: close csr_measured;

Line 38: hr_utility.set_message_token('PROCEDURE','system_measured_name');

34: open csr_measured;
35: fetch csr_measured into p_measured_in_name;
36: if (CSR_MEASURED%NOTFOUND) then
37: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE','system_measured_name');
39: hr_utility.set_message_token('STEP','1');
40: end if;
41: close csr_measured;
42: --

Line 39: hr_utility.set_message_token('STEP','1');

35: fetch csr_measured into p_measured_in_name;
36: if (CSR_MEASURED%NOTFOUND) then
37: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
38: hr_utility.set_message_token('PROCEDURE','system_measured_name');
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);

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 63: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');

59: fetch csr_id into p_job_evaluation_id;
60: --
61: if (csr_id%NOTFOUND) then
62: CLOSE csr_id;
63: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
64: hr_utility.set_message_token('PROCEDURE','get_next_sequence');
65: hr_utility.set_message_token('STEP','1');
66: end if;
67: --

Line 64: hr_utility.set_message_token('PROCEDURE','get_next_sequence');

60: --
61: if (csr_id%NOTFOUND) then
62: CLOSE csr_id;
63: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
64: hr_utility.set_message_token('PROCEDURE','get_next_sequence');
65: hr_utility.set_message_token('STEP','1');
66: end if;
67: --
68: close csr_id;

Line 65: hr_utility.set_message_token('STEP','1');

61: if (csr_id%NOTFOUND) then
62: CLOSE csr_id;
63: hr_utility.set_message(801,'HR_6153_ALL_PROCEDURE_FAIL');
64: hr_utility.set_message_token('PROCEDURE','get_next_sequence');
65: hr_utility.set_message_token('STEP','1');
66: end if;
67: --
68: close csr_id;
69: --

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 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;