DBA Data[Home] [Help]

APPS.HR_SG_APPLICANT_API dependencies on HR_UTILITY

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

138: FROM per_business_groups pbg
139: WHERE pbg.business_group_id = p_business_group_id;
140: --
141: begin
142: hr_utility.set_location('Entering:'|| l_proc, 45);
143: --
144: -- Validation IN addition to Table Handlers
145: --
146: -- Check that the specified business group IS valid.

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

149: FETCH csr_bg
150: INTO l_legislation_code;
151: IF csr_bg%notfound then
152: close csr_bg;
153: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
154: hr_utility.raise_error;
155: END IF;
156: close csr_bg;
157: --

Line 154: hr_utility.raise_error;

150: INTO l_legislation_code;
151: IF csr_bg%notfound then
152: close csr_bg;
153: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
154: hr_utility.raise_error;
155: END IF;
156: close csr_bg;
157: --
158: -- Check that the legislation of the specified business group IS 'SG'.

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

157: --
158: -- Check that the legislation of the specified business group IS 'SG'.
159: --
160: IF l_legislation_code <> 'SG' then
161: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
162: hr_utility.set_message_token('LEG_CODE','SG');
163: hr_utility.raise_error;
164: END IF;
165:

Line 162: hr_utility.set_message_token('LEG_CODE','SG');

158: -- Check that the legislation of the specified business group IS 'SG'.
159: --
160: IF l_legislation_code <> 'SG' then
161: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
162: hr_utility.set_message_token('LEG_CODE','SG');
163: hr_utility.raise_error;
164: END IF;
165:
166: hr_utility.set_location(l_proc, 50);

Line 163: hr_utility.raise_error;

159: --
160: IF l_legislation_code <> 'SG' then
161: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
162: hr_utility.set_message_token('LEG_CODE','SG');
163: hr_utility.raise_error;
164: END IF;
165:
166: hr_utility.set_location(l_proc, 50);
167: --

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

162: hr_utility.set_message_token('LEG_CODE','SG');
163: hr_utility.raise_error;
164: END IF;
165:
166: hr_utility.set_location(l_proc, 50);
167: --
168: -- Call the person business process
169: --
170: hr_applicant_api.create_applicant

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

291: ,p_name_combination_warning => p_name_combination_warning
292: ,p_orig_hire_warning => p_orig_hire_warning
293: );
294: --
295: hr_utility.set_location(' Leaving:'||l_proc, 55);
296: end create_sg_applicant;
297: --
298: end hr_sg_applicant_api;