DBA Data[Home] [Help]

APPS.QA_LOCATION dependencies on HR_UTILITY

Line 27: hr_utility.set_location('QA_LOCATION.QA_PREDEL_VALIDATION', 1);

23: --
24:
25: BEGIN
26:
27: hr_utility.set_location('QA_LOCATION.QA_PREDEL_VALIDATION', 1);
28:
29: --
30: -- Bug 3930666. Construct the decode statement
31: -- using the efficient qa_char_indexes_pkg.

Line 42: hr_utility.set_message(250, 'QA_LOC_RESULTS');

38: RETURN;
39:
40: ELSIF l_status < 0 THEN
41: -- Extremely unusual
42: hr_utility.set_message(250, 'QA_LOC_RESULTS');
43: hr_utility.raise_error;
44:
45: ELSE
46: -- Start the search process.

Line 43: hr_utility.raise_error;

39:
40: ELSIF l_status < 0 THEN
41: -- Extremely unusual
42: hr_utility.set_message(250, 'QA_LOC_RESULTS');
43: hr_utility.raise_error;
44:
45: ELSE
46: -- Start the search process.
47: --

Line 85: hr_utility.set_message(250, 'QA_LOC_RESULTS');

81: -- n = 1 means yes it is being used, so we
82: -- veto the deletion by raising an exception.
83: --
84: if n = 1 then
85: hr_utility.set_message(250, 'QA_LOC_RESULTS');
86: hr_utility.raise_error;
87: end if;
88: END IF;
89:

Line 86: hr_utility.raise_error;

82: -- veto the deletion by raising an exception.
83: --
84: if n = 1 then
85: hr_utility.set_message(250, 'QA_LOC_RESULTS');
86: hr_utility.raise_error;
87: end if;
88: END IF;
89:
90: END qa_predel_validation;