DBA Data[Home] [Help]

APPS.HRBALDTM dependencies on HR_UTILITY

Line 44: hr_utility.set_location ('hrbaldtm.get_bal_ass_action', 1);

40: begin
41: --
42: -- get the payroll id and the consolidation set id
43: --
44: hr_utility.set_location ('hrbaldtm.get_bal_ass_action', 1);
45: select ASSIGN.payroll_id,
46: PAYROLL.consolidation_set_id
47: into l_payroll_id,
48: l_consol_set_id

Line 60: hr_utility.set_location ('hrbaldtm.get_bal_ass_action', 2);

56: and PAYROLL.effective_end_date;
57: --
58: -- get the next value for payroll action id
59: --
60: hr_utility.set_location ('hrbaldtm.get_bal_ass_action', 2);
61: select pay_payroll_actions_s.nextval
62: into l_pay_action_id
63: from dual;
64: --

Line 67: hr_utility.set_location ('hrbaldtm.get_bal_ass_action', 3);

63: from dual;
64: --
65: -- insert a temporary row into pay_payroll_actions
66: --
67: hr_utility.set_location ('hrbaldtm.get_bal_ass_action', 3);
68: insert into pay_payroll_actions
69: (payroll_action_id,
70: action_type,
71: business_group_id,

Line 93: hr_utility.set_location ('hrbaldtm.get_bal_ass_action', 4);

89: 1);
90: --
91: -- now insert the assigment action:
92: --
93: hr_utility.set_location ('hrbaldtm.get_bal_ass_action', 4);
94: hrassact.inassact (l_pay_action_id, p_assignment_id);
95: --
96: -- retrieve the assignment action id:
97: --

Line 98: hr_utility.set_location ('hrbaldtm.get_bal_ass_action', 5);

94: hrassact.inassact (l_pay_action_id, p_assignment_id);
95: --
96: -- retrieve the assignment action id:
97: --
98: hr_utility.set_location ('hrbaldtm.get_bal_ass_action', 5);
99: select assignment_action_id
100: into l_ass_action_id
101: from pay_assignment_actions
102: where payroll_action_id = l_pay_action_id;

Line 104: hr_utility.trace ('Assignment action id = ' || to_char (l_ass_action_id));

100: into l_ass_action_id
101: from pay_assignment_actions
102: where payroll_action_id = l_pay_action_id;
103: --
104: hr_utility.trace ('Assignment action id = ' || to_char (l_ass_action_id));
105: p_ass_action_id := l_ass_action_id;
106: end;
107: end hrbaldtm;