DBA Data[Home] [Help]

APPS.PAY_US_DEDN_TEMPLATE_WRAPPER dependencies on HR_UTILITY

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

64:
65: begin
66: --
67: l_proc := g_proc||'.create_deduction_element';
68: hr_utility.set_location('Entering: '||l_proc, 5);
69: --
70: -- Involuntary Deductions
71: --
72: if p_classification_name = 'Involuntary Deductions' then

Line 95: hr_utility.set_location (l_proc,5);

91:
92: if l_architecture is not null and l_architecture = 'N' then
93: -- Bug 3650283
94: if p_category = 'DCIA' then
95: hr_utility.set_location (l_proc,5);
96: hr_utility.set_message(801,'PAY_US_DCIA_ERROR');
97: hr_utility.raise_error;
98: end if;
99: l_ele_type_id :=

Line 96: hr_utility.set_message(801,'PAY_US_DCIA_ERROR');

92: if l_architecture is not null and l_architecture = 'N' then
93: -- Bug 3650283
94: if p_category = 'DCIA' then
95: hr_utility.set_location (l_proc,5);
96: hr_utility.set_message(801,'PAY_US_DCIA_ERROR');
97: hr_utility.raise_error;
98: end if;
99: l_ele_type_id :=
100: hr_us_garn_gen.create_garnishment

Line 97: hr_utility.raise_error;

93: -- Bug 3650283
94: if p_category = 'DCIA' then
95: hr_utility.set_location (l_proc,5);
96: hr_utility.set_message(801,'PAY_US_DCIA_ERROR');
97: hr_utility.raise_error;
98: end if;
99: l_ele_type_id :=
100: hr_us_garn_gen.create_garnishment
101: (p_garn_name => p_element_name

Line 108: hr_utility.set_location(l_proc, 15);

104: ,p_category => p_category
105: ,p_bg_id => p_business_group_id
106: ,p_ele_eff_start_date => p_ele_eff_start_date
107: );
108: hr_utility.set_location(l_proc, 15);
109: else
110: l_ele_type_id :=
111: pay_us_user_init_dedn.create_user_init_template
112: (p_ele_name => p_element_name

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

135: ,p_catchup_processing => p_catchup_processing
136: ,p_termination_rule => p_termination_rule
137: ,p_ben_class_id => p_ben_class_id
138: );
139: hr_utility.set_location(l_proc, 20);
140: end if;
141: --
142: -- Pre-Tax Deductions
143: --

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

194: ,p_catchup_processing => p_catchup_processing
195: ,p_termination_rule => p_termination_rule
196: ,p_ben_class_id => p_ben_class_id
197: );
198: hr_utility.set_location(l_proc, 30);
199: --
200: -- Voluntary Deductions
201: --
202: else

Line 233: hr_utility.set_location(l_proc, 40);

229: ,p_bg_id => p_business_group_id
230: ,p_termination_rule => p_termination_rule
231: );
232:
233: hr_utility.set_location(l_proc, 40);
234: --
235: end if;
236: --
237: return (l_ele_type_id);

Line 239: hr_utility.set_location('Leaving '||l_proc, 50);

235: end if;
236: --
237: return (l_ele_type_id);
238: --
239: hr_utility.set_location('Leaving '||l_proc, 50);
240: --
241: END create_deduction_element;
242: --
243: --

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

291: and eei_information_category = 'PQP_US_PRE_TAX_DEDUCTIONS';
292: --
293: begin
294: l_proc := g_proc||'.delete_deduction_element';
295: hr_utility.set_location('Entering: '||l_proc, 5);
296:
297: if p_classification_name = 'Pre-Tax Deductions' then
298: for c1_rec in c1 loop
299: l_template_based := c1_rec.template_id;

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

298: for c1_rec in c1 loop
299: l_template_based := c1_rec.template_id;
300: end loop;
301: end if;
302: hr_utility.set_location(l_proc, 10);
303: --
304: if p_classification_name = 'Involuntary Deductions' then
305: --
306: hr_us_garn_gen.delete_dedn

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

325: ,p_del_val_start_date => p_eff_start_date
326: ,p_del_val_end_date => p_eff_end_date
327: );
328: --
329: hr_utility.set_location(l_proc, 20);
330: --
331: elsif p_classification_name = 'Pre-Tax Deductions' and
332: l_template_based is not null then
333:

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

346: ,p_object_version_number => c2_rec.object_version_number
347: );
348: end loop;
349: --
350: hr_utility.set_location(l_proc, 30);
351: --
352: else
353: hr_user_init_dedn.do_deletions
354: (p_business_group_id => p_business_group_id

Line 377: hr_utility.set_location(l_proc, 40);

373: ,p_del_sess_date => p_eff_start_date
374: ,p_del_val_start_date => p_eff_start_date
375: ,p_del_val_end_date => p_eff_end_date);
376: --
377: hr_utility.set_location(l_proc, 40);
378: end if;
379: --
380: hr_utility.set_location('Leaving '||l_proc, 50);
381: --

Line 380: hr_utility.set_location('Leaving '||l_proc, 50);

376: --
377: hr_utility.set_location(l_proc, 40);
378: end if;
379: --
380: hr_utility.set_location('Leaving '||l_proc, 50);
381: --
382: end delete_deduction_element;
383: --
384: --