DBA Data[Home] [Help]

APPS.HR_MX_EMPLOYEE_API dependencies on HR_UTILITY

Line 136: hr_utility.set_location('Entering:'|| l_proc, 10);

132:
133: l_proc := g_package||'create_mx_employee';
134:
135: if g_debug then
136: hr_utility.set_location('Entering:'|| l_proc, 10);
137: end if;
138:
139: --
140: -- Validation IN addition to Row Handlers

Line 145: hr_utility.set_location(l_proc, 20);

141: --
142: hr_mx_utility.check_bus_grp(p_business_group_id, 'MX');
143:
144: if g_debug then
145: hr_utility.set_location(l_proc, 20);
146: end if;
147:
148: --
149: -- Call the person business process

Line 269: hr_utility.set_location('Leaving: '||l_proc, 30);

265: ,p_assign_payroll_warning => p_assign_payroll_warning
266: ,p_orig_hire_warning => p_orig_hire_warning);
267: --
268: if g_debug then
269: hr_utility.set_location('Leaving: '||l_proc, 30);
270: end if;
271: --
272: end create_mx_employee;
273:

Line 302: hr_utility.set_location('Entering:'|| l_proc, 10);

298:
299: l_proc := g_package||'mx_hire_into_job';
300:
301: if g_debug then
302: hr_utility.set_location('Entering:'|| l_proc, 10);
303: end if;
304:
305: -----------------------------------------------------------------
306: -- Check that the business group of the person is in 'MX'

Line 312: hr_utility.set_location(l_proc, 20);

308: -----------------------------------------------------------------
309: l_business_group_id := hr_mx_utility.get_bg_from_person(p_person_id);
310:
311: if g_debug then
312: hr_utility.set_location(l_proc, 20);
313: end if;
314:
315: hr_mx_utility.check_bus_grp(l_business_group_id, 'MX');
316:

Line 318: hr_utility.set_location(l_proc, 30);

314:
315: hr_mx_utility.check_bus_grp(l_business_group_id, 'MX');
316:
317: if g_debug then
318: hr_utility.set_location(l_proc, 30);
319: end if;
320:
321: -----------------------------------------------------------------
322: -- Call the person business process

Line 339: hr_utility.set_location('Leaving: '||l_proc, 40);

335: ,p_assign_payroll_warning => p_assign_payroll_warning
336: ,p_orig_hire_warning => p_orig_hire_warning );
337: --
338: if g_debug then
339: hr_utility.set_location('Leaving: '||l_proc, 40);
340: end if;
341: --
342: end mx_hire_into_job;
343:

Line 347: g_debug := hr_utility.debug_enabled;

343:
344: BEGIN
345:
346: g_package := 'hr_mx_employee_api.';
347: g_debug := hr_utility.debug_enabled;
348:
349: END hr_mx_employee_api;