DBA Data[Home] [Help]

APPS.HR_CANCEL_HIRE_BK1 dependencies on HR_API

Line 22: l_commit_unit_number := hr_api.return_commit_unit;

18: l_commit_unit_number number;
19: l_legislation_code varchar2(30);
20: begin
21: hr_utility.set_location('Entering: HR_CANCEL_HIRE_BK1.CANCEL_HIRE_A', 10);
22: l_commit_unit_number := hr_api.return_commit_unit;
23: if hr_api.call_app_hooks then
24: hr_cancel_hire_be1.CANCEL_HIRE_A
25: (P_PERSON_ID => P_PERSON_ID
26: ,P_EFFECTIVE_DATE => P_EFFECTIVE_DATE

Line 23: if hr_api.call_app_hooks then

19: l_legislation_code varchar2(30);
20: begin
21: hr_utility.set_location('Entering: HR_CANCEL_HIRE_BK1.CANCEL_HIRE_A', 10);
22: l_commit_unit_number := hr_api.return_commit_unit;
23: if hr_api.call_app_hooks then
24: hr_cancel_hire_be1.CANCEL_HIRE_A
25: (P_PERSON_ID => P_PERSON_ID
26: ,P_EFFECTIVE_DATE => P_EFFECTIVE_DATE
27: ,P_SUPERVISOR_WARNING => P_SUPERVISOR_WARNING

Line 39: hr_api.validate_commit_unit(l_commit_unit_number, 'CANCEL_HIRE', 'AP');

35: ,P_PAYMENT_WARNING => P_PAYMENT_WARNING
36: );
37: end if;
38: hr_multi_message.end_validation_set;
39: hr_api.validate_commit_unit(l_commit_unit_number, 'CANCEL_HIRE', 'AP');
40: hr_utility.set_location(' Leaving: HR_CANCEL_HIRE_BK1.CANCEL_HIRE_A', 20);
41: end CANCEL_HIRE_A;
42: procedure CANCEL_HIRE_B
43: (P_PERSON_ID in NUMBER

Line 50: l_commit_unit_number := hr_api.return_commit_unit;

46: l_commit_unit_number number;
47: l_legislation_code varchar2(30);
48: begin
49: hr_utility.set_location('Entering: HR_CANCEL_HIRE_BK1.CANCEL_HIRE_B', 10);
50: l_commit_unit_number := hr_api.return_commit_unit;
51: if hr_api.call_leg_hooks then
52: l_legislation_code := per_per_bus.return_legislation_code(P_PERSON_ID => P_PERSON_ID
53: );
54: if l_legislation_code = 'US' then

Line 51: if hr_api.call_leg_hooks then

47: l_legislation_code varchar2(30);
48: begin
49: hr_utility.set_location('Entering: HR_CANCEL_HIRE_BK1.CANCEL_HIRE_B', 10);
50: l_commit_unit_number := hr_api.return_commit_unit;
51: if hr_api.call_leg_hooks then
52: l_legislation_code := per_per_bus.return_legislation_code(P_PERSON_ID => P_PERSON_ID
53: );
54: if l_legislation_code = 'US' then
55: PER_US_DEL_TAX_LEG_HOOK.DELETE_US_TAX_INFO

Line 61: hr_api.validate_commit_unit(l_commit_unit_number, 'CANCEL_HIRE', 'BP');

57: ,P_EFFECTIVE_DATE => P_EFFECTIVE_DATE
58: );
59: end if;
60: end if;
61: hr_api.validate_commit_unit(l_commit_unit_number, 'CANCEL_HIRE', 'BP');
62: hr_utility.set_location(' Leaving: HR_CANCEL_HIRE_BK1.CANCEL_HIRE_B', 20);
63: end CANCEL_HIRE_B;
64: end HR_CANCEL_HIRE_BK1;