DBA Data[Home] [Help]

APPS.PAY_BALANCE_ADJUSTMENT_API dependencies on HR_UTILITY

Line 124: hr_utility.set_location('Entering:'|| l_proc, 5);

120: l_object_version_number number;
121: l_create_warning boolean;
122: l_proc varchar2(72) := g_package ||'create_adjustment';
123: begin
124: hr_utility.set_location('Entering:'|| l_proc, 5);
125:
126: savepoint create_adjustment;
127:
128: -- Obtain information based on the assignment.

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

127:
128: -- Obtain information based on the assignment.
129: -- Also get the new payroll_action_id and
130: -- time period information.
131: hr_utility.set_location(l_proc, 20);
132: select asg.business_group_id,
133: asg.payroll_id,
134: ptp.time_period_id,
135: pay_payroll_actions_s.nextval

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

228:
229: -- Perform an update to the entry.
230: -- Entry API doesn't support the bal_adjust_cost_flag.
231: -- and ensure that the creator_type is correct.
232: hr_utility.set_location(l_proc, 30);
233: update pay_element_entries_f pee
234: set pee.creator_type = 'B',
235: pee.balance_adj_cost_flag = p_balance_adj_cost_flag
236: where pee.element_entry_id = l_element_entry_id

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

249: if(p_validate) then
250: raise hr_api.validate_enabled;
251: end if;
252:
253: hr_utility.set_location(' Leaving:'||l_proc, 40);
254: exception
255: when hr_api.validate_enabled then
256: --
257: -- As the Validate_Enabled exception has been raised

Line 300: hr_utility.set_location('Entering:'|| l_proc, 5);

296: l_assignment_action_id number;
297: l_dummy number;
298: l_proc varchar2(72) := g_package ||'delete_adjustment';
299: begin
300: hr_utility.set_location('Entering:'|| l_proc, 5);
301:
302: savepoint delete_adjustment;
303:
304: -- We know the element entry, but we need to know the payroll

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

302: savepoint delete_adjustment;
303:
304: -- We know the element entry, but we need to know the payroll
305: -- action that we have to remove.
306: hr_utility.set_location(l_proc, 20);
307: select act.payroll_action_id
308: ,act.assignment_action_id
309: into l_payroll_action_id
310: ,l_assignment_action_id

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

323: --
324: -- Ensure there are no other assignment actions nor run
325: -- results in this payroll action.
326: --
327: hr_utility.set_location(l_proc, 30);
328: begin
329:
330: select 1 into l_dummy from dual
331: where

Line 358: hr_utility.set_location(' Leaving:'||l_proc, 100);

354: if(p_validate) then
355: raise hr_api.validate_enabled;
356: end if;
357:
358: hr_utility.set_location(' Leaving:'||l_proc, 100);
359: exception
360: when hr_api.validate_enabled then
361: --
362: -- As the Validate_Enabled exception has been raised