DBA Data[Home] [Help]

APPS.HR_AU_APPLICANT_API dependencies on HR_UTILITY

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

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

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

144: FETCH csr_bg
145: INTO l_legislation_code;
146: IF csr_bg%notfound then
147: close csr_bg;
148: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
149: hr_utility.raise_error;
150: END IF;
151: close csr_bg;
152: --

Line 149: hr_utility.raise_error;

145: INTO l_legislation_code;
146: IF csr_bg%notfound then
147: close csr_bg;
148: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
149: hr_utility.raise_error;
150: END IF;
151: close csr_bg;
152: --
153: -- Check that the legislation of the specified business group IS 'AU'.

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

152: --
153: -- Check that the legislation of the specified business group IS 'AU'.
154: --
155: IF l_legislation_code <> 'AU' then
156: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
157: hr_utility.set_message_token('LEG_CODE','AU');
158: hr_utility.raise_error;
159: END IF;
160:

Line 157: hr_utility.set_message_token('LEG_CODE','AU');

153: -- Check that the legislation of the specified business group IS 'AU'.
154: --
155: IF l_legislation_code <> 'AU' then
156: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
157: hr_utility.set_message_token('LEG_CODE','AU');
158: hr_utility.raise_error;
159: END IF;
160:
161: hr_utility.set_location(l_proc, 50);

Line 158: hr_utility.raise_error;

154: --
155: IF l_legislation_code <> 'AU' then
156: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
157: hr_utility.set_message_token('LEG_CODE','AU');
158: hr_utility.raise_error;
159: END IF;
160:
161: hr_utility.set_location(l_proc, 50);
162: --

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

157: hr_utility.set_message_token('LEG_CODE','AU');
158: hr_utility.raise_error;
159: END IF;
160:
161: hr_utility.set_location(l_proc, 50);
162: --
163: -- Call the person business process
164: --
165: hr_applicant_api.create_applicant

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

258: ,p_name_combination_warning => p_name_combination_warning
259: ,p_orig_hire_warning => p_orig_hire_warning
260: );
261: --
262: hr_utility.set_location(' Leaving:'||l_proc, 55);
263: END create_AU_applicant;
264: --
265: END hr_AU_applicant_api;