DBA Data[Home] [Help]

APPS.HR_NO_APPLICANT_API dependencies on HR_UTILITY

Line 122: hr_utility.set_location('Entering:'|| l_proc, 45);

118: FROM per_business_groups pbg
119: WHERE pbg.business_group_id = p_business_group_id;
120: --
121: begin
122: hr_utility.set_location('Entering:'|| l_proc, 45);
123: --
124: -- Validation IN addition to Table Handlers
125: --
126: -- Check that the specified business group IS valid.

Line 133: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');

129: FETCH csr_bg
130: INTO l_legislation_code;
131: IF csr_bg%notfound then
132: close csr_bg;
133: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
134: hr_utility.raise_error;
135: END IF;
136: close csr_bg;
137: --

Line 134: hr_utility.raise_error;

130: INTO l_legislation_code;
131: IF csr_bg%notfound then
132: close csr_bg;
133: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
134: hr_utility.raise_error;
135: END IF;
136: close csr_bg;
137: --
138: -- Check that the legislation of the specified business group IS 'NO'.

Line 141: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');

137: --
138: -- Check that the legislation of the specified business group IS 'NO'.
139: --
140: IF l_legislation_code <> 'NO' then
141: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
142: hr_utility.set_message_token('LEG_CODE','NO');
143: hr_utility.raise_error;
144: END IF;
145:

Line 142: hr_utility.set_message_token('LEG_CODE','NO');

138: -- Check that the legislation of the specified business group IS 'NO'.
139: --
140: IF l_legislation_code <> 'NO' then
141: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
142: hr_utility.set_message_token('LEG_CODE','NO');
143: hr_utility.raise_error;
144: END IF;
145:
146: hr_utility.set_location(l_proc, 50);

Line 143: hr_utility.raise_error;

139: --
140: IF l_legislation_code <> 'NO' then
141: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
142: hr_utility.set_message_token('LEG_CODE','NO');
143: hr_utility.raise_error;
144: END IF;
145:
146: hr_utility.set_location(l_proc, 50);
147: --

Line 146: hr_utility.set_location(l_proc, 50);

142: hr_utility.set_message_token('LEG_CODE','NO');
143: hr_utility.raise_error;
144: END IF;
145:
146: hr_utility.set_location(l_proc, 50);
147: --
148: -- Call the person business process
149: --
150: hr_applicant_api.create_applicant

Line 251: hr_utility.set_location(' Leaving:'||l_proc, 55);

247: ,p_name_combination_warning => p_name_combination_warning
248: ,p_orig_hire_warning => p_orig_hire_warning
249: );
250: --
251: hr_utility.set_location(' Leaving:'||l_proc, 55);
252: null;
253: end create_no_applicant ;
254:
255: END HR_NO_APPLICANT_API;