DBA Data[Home] [Help]

APPS.HR_RU_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 'RU'.

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 'RU'.
154: --
155: if l_legislation_code <> 'RU' then
156: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
157: hr_utility.set_message_token('LEG_CODE','RU');
158: hr_utility.raise_error;
159: end if;
160:

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

153: -- Check that the legislation of the specified business group is 'RU'.
154: --
155: if l_legislation_code <> 'RU' then
156: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
157: hr_utility.set_message_token('LEG_CODE','RU');
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 <> 'RU' then
156: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
157: hr_utility.set_message_token('LEG_CODE','RU');
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','RU');
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_utility.set_location (l_proc, 50);

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

161: hr_utility.set_location(l_proc, 50);
162: --
163: -- Call the person business process
164: --
165: hr_utility.set_location (l_proc, 50);
166: --
167: -- Call the person business process
168: --
169: hr_applicant_api.create_applicant

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

281: ,p_name_combination_warning => p_name_combination_warning
282: ,p_orig_hire_warning => p_orig_hire_warning
283: );
284: --
285: hr_utility.set_location(' Leaving:'||l_proc, 55);
286: end create_ru_applicant;
287: --
288: end hr_ru_applicant_api;