DBA Data[Home] [Help]

APPS.HR_NZ_APPLICANT_API dependencies on HR_UTILITY

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

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

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

151: FETCH csr_bg
152: INTO l_legislation_code;
153: IF csr_bg%notfound THEN
154: CLOSE csr_bg;
155: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
156: hr_utility.raise_error;
157: END IF;
158: CLOSE csr_bg;
159: --

Line 156: hr_utility.raise_error;

152: INTO l_legislation_code;
153: IF csr_bg%notfound THEN
154: CLOSE csr_bg;
155: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
156: hr_utility.raise_error;
157: END IF;
158: CLOSE csr_bg;
159: --
160: -- Check that the legislation of the specified business group is 'GB'.

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

159: --
160: -- Check that the legislation of the specified business group is 'GB'.
161: --
162: IF l_legislation_code <> 'NZ' THEN
163: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
164: hr_utility.set_message_token('LEG_CODE','GB');
165: hr_utility.raise_error;
166: END IF;
167:

Line 164: hr_utility.set_message_token('LEG_CODE','GB');

160: -- Check that the legislation of the specified business group is 'GB'.
161: --
162: IF l_legislation_code <> 'NZ' THEN
163: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
164: hr_utility.set_message_token('LEG_CODE','GB');
165: hr_utility.raise_error;
166: END IF;
167:
168: hr_utility.set_location(l_proc, 50);

Line 165: hr_utility.raise_error;

161: --
162: IF l_legislation_code <> 'NZ' THEN
163: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
164: hr_utility.set_message_token('LEG_CODE','GB');
165: hr_utility.raise_error;
166: END IF;
167:
168: hr_utility.set_location(l_proc, 50);
169: --

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

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

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

277: ,p_name_combination_warning => p_name_combination_warning
278: ,p_orig_hire_warning => p_orig_hire_warning
279: );
280: --
281: hr_utility.set_location(' Leaving:'||l_proc, 55);
282: END create_nz_applicant;
283: END hr_nz_applicant_api;