DBA Data[Home] [Help]

APPS.HR_TIM_BUS dependencies on HR_UTILITY

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

24: l_proc varchar2(72) := g_package||'set_security_group_id';
25: --
26: begin
27: --
28: hr_utility.set_location('Entering:'|| l_proc, 10);
29: --
30: -- No business group context. Security group is not applicable.
31: --
32: null;

Line 34: hr_utility.set_location(' Leaving:'|| l_proc, 20);

30: -- No business group context. Security group is not applicable.
31: --
32: null;
33: --
34: hr_utility.set_location(' Leaving:'|| l_proc, 20);
35: --
36: end set_security_group_id;
37: --
38: -- ---------------------------------------------------------------------------

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

59: l_proc varchar2(72) := g_package||'return_legislation_code';
60: --
61: Begin
62: --
63: hr_utility.set_location('Entering:'|| l_proc, 10);
64: --
65: -- Ensure that all the mandatory parameter are not null
66: --
67: hr_api.mandatory_arg_error

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

77: -- call to this function. Just return the value in the global
78: -- variable.
79: --
80: l_legislation_code := hr_tim_bus.g_legislation_code;
81: hr_utility.set_location(l_proc, 20);
82: else
83: --
84: -- The ID is different to the last call to this function
85: -- or this is the first call to this function.

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

94: close csr_leg_code;
95: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
96: fnd_message.raise_error;
97: end if;
98: hr_utility.set_location(l_proc,30);
99: --
100: -- Set the global variables so the values are
101: -- available for the next call to this function.
102: --

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

103: close csr_leg_code;
104: hr_tim_bus.g_template_item_id := p_template_item_id;
105: hr_tim_bus.g_legislation_code := l_legislation_code;
106: end if;
107: hr_utility.set_location(' Leaving:'|| l_proc, 40);
108: return l_legislation_code;
109: end return_legislation_code;
110: --
111: -- ----------------------------------------------------------------------------

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

193: l_proc varchar2(72) := g_package || 'chk_form_item_id';
194: l_api_updating boolean;
195: --
196: Begin
197: hr_utility.set_location('Entering:'||l_proc, 10);
198: --
199: -- Check value has been passed
200: --
201: hr_api.mandatory_arg_error

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

203: ,p_argument => 'form_item_id'
204: ,p_argument_value => p_form_item_id
205: );
206: --
207: hr_utility.set_location('Leaving:'||l_proc, 100);
208: End chk_form_item_id;
209: --
210: -- ----------------------------------------------------------------------------
211: -- |-------------------------< chk_form_template_id >-------------------------|

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

219: l_proc varchar2(72) := g_package || 'chk_form_template_id';
220: l_api_updating boolean;
221: --
222: Begin
223: hr_utility.set_location('Entering:'||l_proc, 10);
224: --
225: -- Check value has been passed
226: --
227: hr_api.mandatory_arg_error

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

229: ,p_argument => 'form_template_id'
230: ,p_argument_value => p_form_template_id
231: );
232: --
233: hr_utility.set_location('Leaving:'||l_proc, 100);
234: End chk_form_template_id;
235: --
236: -- ----------------------------------------------------------------------------
237: -- |------------------------< chk_item_and_template >-------------------------|

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

262: l_template_application_id number;
263: l_template_form_id number;
264: --
265: Begin
266: hr_utility.set_location('Entering:'||l_proc, 10);
267: --
268: l_api_updating := hr_tim_shd.api_updating
269: (p_template_item_id => p_template_item_id
270: ,p_object_version_number => p_object_version_number

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

268: l_api_updating := hr_tim_shd.api_updating
269: (p_template_item_id => p_template_item_id
270: ,p_object_version_number => p_object_version_number
271: );
272: hr_utility.set_location(l_proc,20);
273: --
274: -- Only proceed with SQL validation if absolutely necessary
275: --
276: if ( ( l_api_updating

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

279: or nvl(hr_tim_shd.g_old_rec.form_template_id,hr_api.g_number) <>
280: nvl(p_form_template_id,hr_api.g_number)))
281: or (NOT l_api_updating)) then
282: --
283: hr_utility.set_location(l_proc,30);
284: --
285: -- Check item and template reference the same form
286: --
287: open csr_form_item;

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

305: fnd_message.raise_error;
306: end if;
307: close csr_form_template;
308: --
309: hr_utility.set_location(l_proc,40);
310: --
311: if nvl(l_item_application_id,hr_api.g_number) <>
312: nvl(l_template_application_id,hr_api.g_number)
313: or nvl(l_item_form_id,hr_api.g_number) <>

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

319: end if;
320: --
321: end if;
322: --
323: hr_utility.set_location('Leaving:'||l_proc, 100);
324: End chk_item_and_template;
325: -- ----------------------------------------------------------------------------
326: -- |--------------------------< chk_no_flex_segment_comb >--------------------|
327: -- ----------------------------------------------------------------------------

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

383: l_proc varchar2(72) := g_package || 'chk_no_flex_segment_comb';
384: l_api_updating boolean;
385: --
386: Begin
387: hr_utility.set_location('Entering:'||l_proc, 10);
388: --
389: -- Check value has been passed
390: --
391: hr_api.mandatory_arg_error

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

414: ) then
415: null;
416: else
417: --
418: hr_utility.set_location(l_proc,20);
419: --
420: for j in 1..3 loop -- loop around the blocks
421: <>
422: if j=1 then

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

503: --
504: end loop block;
505: --
506: end if;
507: hr_utility.set_location('Leaving:'||l_proc, 100);
508: end chk_no_flex_segment_comb;
509: --
510: -- ----------------------------------------------------------------------------
511: -- |------------------------------< chk_delete >------------------------------|

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

516: --
517: l_proc varchar2(72) := g_package||'chk_delete';
518: --
519: Begin
520: hr_utility.set_location('Entering:'||l_proc, 5);
521: --
522: -- No additional validation required
523: --
524: null;

Line 526: hr_utility.set_location(' Leaving:'||l_proc, 10);

522: -- No additional validation required
523: --
524: null;
525: --
526: hr_utility.set_location(' Leaving:'||l_proc, 10);
527: End chk_delete;
528: --
529: -- ----------------------------------------------------------------------------
530: -- |---------------------------< insert_validate >----------------------------|

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

535: --
536: l_proc varchar2(72) := g_package||'insert_validate';
537: --
538: Begin
539: hr_utility.set_location('Entering:'||l_proc, 5);
540: --
541: -- Call all supporting business operations
542: -- No business group context. HR_STANDARD_LOOKUPS used for validation.
543: --

Line 563: hr_utility.set_location(' Leaving:'||l_proc, 10);

559: ,p_form_item_id => p_rec.form_item_id
560: ,p_form_template_id => p_rec.form_template_id
561: );
562: --
563: hr_utility.set_location(' Leaving:'||l_proc, 10);
564: End insert_validate;
565: --
566: -- ----------------------------------------------------------------------------
567: -- |---------------------------< update_validate >----------------------------|

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

572: --
573: l_proc varchar2(72) := g_package||'update_validate';
574: --
575: Begin
576: hr_utility.set_location('Entering:'||l_proc, 5);
577: --
578: -- Call all supporting business operations
579: -- No business group context. HR_STANDARD_LOOKUPS used for validation.
580: --

Line 604: hr_utility.set_location(' Leaving:'||l_proc, 10);

600: ,p_form_item_id => p_rec.form_item_id
601: ,p_form_template_id => p_rec.form_template_id
602: );
603: --
604: hr_utility.set_location(' Leaving:'||l_proc, 10);
605: End update_validate;
606: --
607: -- ----------------------------------------------------------------------------
608: -- |---------------------------< delete_validate >----------------------------|

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

613: --
614: l_proc varchar2(72) := g_package||'delete_validate';
615: --
616: Begin
617: hr_utility.set_location('Entering:'||l_proc, 5);
618: --
619: -- Call all supporting business operations
620: --
621: chk_delete

Line 625: hr_utility.set_location(' Leaving:'||l_proc, 10);

621: chk_delete
622: (p_rec => p_rec
623: );
624: --
625: hr_utility.set_location(' Leaving:'||l_proc, 10);
626: End delete_validate;
627: --
628: end hr_tim_bus;