DBA Data[Home] [Help]

APPS.HR_TPP_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 69: hr_utility.set_location('Entering:'|| l_proc, 10);

65: l_proc varchar2(72) := g_package||'return_legislation_code';
66: --
67: Begin
68: --
69: hr_utility.set_location('Entering:'|| l_proc, 10);
70: --
71: -- Ensure that all the mandatory parameter are not null
72: --
73: hr_api.mandatory_arg_error

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

83: -- call to this function. Just return the value in the global
84: -- variable.
85: --
86: l_legislation_code := hr_tpp_bus.g_legislation_code;
87: hr_utility.set_location(l_proc, 20);
88: else
89: --
90: -- The ID is different to the last call to this function
91: -- or this is the first call to this function.

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

99: -- properties
100: --
101: l_legislation_code := null;
102: end if;
103: hr_utility.set_location(l_proc,30);
104: --
105: -- Set the global variables so the values are
106: -- available for the next call to this function.
107: --

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

108: close csr_leg_code;
109: hr_tpp_bus.g_tab_page_property_id := p_tab_page_property_id;
110: hr_tpp_bus.g_legislation_code := l_legislation_code;
111: end if;
112: hr_utility.set_location(' Leaving:'|| l_proc, 40);
113: return l_legislation_code;
114: end return_legislation_code;
115: --
116: -- ----------------------------------------------------------------------------

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

147: --
148: l_proc varchar2(72) := g_package || 'chk_ddf';
149: --
150: begin
151: hr_utility.set_location('Entering:'||l_proc,10);
152: --
153: if ((p_rec.tab_page_property_id is not null) and (
154: nvl(hr_tpp_shd.g_old_rec.information_category, hr_api.g_varchar2) <>
155: nvl(p_rec.information_category, hr_api.g_varchar2) or

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

286: ,p_attribute30_value => p_rec.information30
287: );
288: end if;
289: --
290: hr_utility.set_location(' Leaving:'||l_proc,20);
291: end chk_ddf;
292: --
293: -- ----------------------------------------------------------------------------
294: -- |-----------------------< chk_non_updateable_args >------------------------|

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

377: l_proc varchar2(72) := g_package || 'chk_form_and_template_tab_page';
378: l_api_updating boolean;
379: --
380: Begin
381: hr_utility.set_location('Entering:'||l_proc, 10);
382: --
383: -- One and only one of form_tab_page_id and template_tab_page_id must be given
384: --
385: if not ( ( p_form_tab_page_id is not null

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

391: fnd_message.set_token('STEP','10');
392: fnd_message.raise_error;
393: end if;
394: --
395: hr_utility.set_location('Leaving:'||l_proc, 100);
396: End chk_form_and_template_tab_page;
397: --
398: -- ----------------------------------------------------------------------------
399: -- |-------------------------< chk_form_tab_page_id >-------------------------|

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

408: l_api_updating boolean;
409: l_canvas_type varchar2(30);
410: --
411: Begin
412: hr_utility.set_location('Entering:'||l_proc, 10);
413: --
414: -- No additional validation required
415: --
416: null;

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

414: -- No additional validation required
415: --
416: null;
417: --
418: hr_utility.set_location('Leaving:'||l_proc, 100);
419: End chk_form_tab_page_id;
420: --
421: -- ----------------------------------------------------------------------------
422: -- |-----------------------< chk_template_tab_page_id >-----------------------|

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

430: l_proc varchar2(72) := g_package || 'chk_template_tab_page_id';
431: l_api_updating boolean;
432: --
433: Begin
434: hr_utility.set_location('Entering:'||l_proc, 10);
435: --
436: -- No additional validation required
437: --
438: null;

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

436: -- No additional validation required
437: --
438: null;
439: --
440: hr_utility.set_location('Leaving:'||l_proc, 100);
441: End chk_template_tab_page_id;
442: --
443: -- ----------------------------------------------------------------------------
444: -- |-----------------------< chk_navigation_direction >-----------------------|

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

453: l_proc varchar2(72) := g_package || 'chk_navigation_direction';
454: l_api_updating boolean;
455: --
456: Begin
457: hr_utility.set_location('Entering:'||l_proc, 10);
458: --
459: -- Check mandatory arguments have been set
460: --
461: hr_api.mandatory_arg_error

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

467: l_api_updating := hr_tpp_shd.api_updating
468: (p_tab_page_property_id => p_tab_page_property_id
469: ,p_object_version_number => p_object_version_number
470: );
471: hr_utility.set_location(l_proc,20);
472: --
473: -- Only proceed with SQL validation if absolutely necessary
474: --
475: if ( ( l_api_updating

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

476: and nvl(hr_tpp_shd.g_old_rec.navigation_direction,hr_api.g_varchar2) <>
477: nvl(p_navigation_direction,hr_api.g_varchar2))
478: or (NOT l_api_updating)) then
479: --
480: hr_utility.set_location(l_proc,30);
481: --
482: if (p_navigation_direction is not null) then
483: --
484: hr_utility.set_location(l_proc,40);

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

480: hr_utility.set_location(l_proc,30);
481: --
482: if (p_navigation_direction is not null) then
483: --
484: hr_utility.set_location(l_proc,40);
485: --
486: -- Must exist in hr_standard_lookups where lookup_type is
487: -- NAVIGATION_DIRECTION
488: --

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

500: end if;
501: --
502: end if;
503: --
504: hr_utility.set_location('Leaving:'||l_proc, 100);
505: End chk_navigation_direction;
506: --
507: -- ----------------------------------------------------------------------------
508: -- |-----------------------------< chk_visible >------------------------------|

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

517: l_proc varchar2(72) := g_package || 'chk_visible';
518: l_api_updating boolean;
519: --
520: Begin
521: hr_utility.set_location('Entering:'||l_proc, 10);
522: --
523: -- Check mandatory arguments have been set
524: --
525: hr_api.mandatory_arg_error

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

531: l_api_updating := hr_tpp_shd.api_updating
532: (p_tab_page_property_id => p_tab_page_property_id
533: ,p_object_version_number => p_object_version_number
534: );
535: hr_utility.set_location(l_proc,20);
536: --
537: -- Only proceed with SQL validation if absolutely necessary
538: --
539: if ( ( l_api_updating

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

540: and nvl(hr_tpp_shd.g_old_rec.visible,hr_api.g_number) <>
541: nvl(p_visible,hr_api.g_number))
542: or (NOT l_api_updating)) then
543: --
544: hr_utility.set_location(l_proc,30);
545: --
546: if (p_visible is not null) then
547: --
548: hr_utility.set_location(l_proc,40);

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

544: hr_utility.set_location(l_proc,30);
545: --
546: if (p_visible is not null) then
547: --
548: hr_utility.set_location(l_proc,40);
549: --
550: -- Must exist in hr_standard_lookups where lookup_type is
551: -- PROPERTY_TRUE_OR_FALSE
552: --

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

564: end if;
565: --
566: end if;
567: --
568: hr_utility.set_location('Leaving:'||l_proc, 100);
569: End chk_visible;
570: --
571: -- ----------------------------------------------------------------------------
572: -- |------------------------------< chk_delete >------------------------------|

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

577: --
578: l_proc varchar2(72) := g_package||'chk_delete';
579: --
580: Begin
581: hr_utility.set_location('Entering:'||l_proc, 5);
582: --
583: -- No additional validation required
584: --
585: null;

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

583: -- No additional validation required
584: --
585: null;
586: --
587: hr_utility.set_location(' Leaving:'||l_proc, 10);
588: End chk_delete;
589: --
590: -- ----------------------------------------------------------------------------
591: -- |---------------------------< insert_validate >----------------------------|

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

597: --
598: l_proc varchar2(72) := g_package||'insert_validate';
599: --
600: Begin
601: hr_utility.set_location('Entering:'||l_proc, 5);
602: --
603: -- Check mandatory arguments have been set
604: --
605: hr_api.mandatory_arg_error

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

647: chk_ddf
648: (p_rec => p_rec
649: );
650: --
651: hr_utility.set_location(' Leaving:'||l_proc, 10);
652: End insert_validate;
653: --
654: -- ----------------------------------------------------------------------------
655: -- |---------------------------< update_validate >----------------------------|

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

661: --
662: l_proc varchar2(72) := g_package||'update_validate';
663: --
664: Begin
665: hr_utility.set_location('Entering:'||l_proc, 5);
666: --
667: -- Check mandatory arguments have been set
668: --
669: hr_api.mandatory_arg_error

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

716: chk_ddf
717: (p_rec => p_rec
718: );
719: --
720: hr_utility.set_location(' Leaving:'||l_proc, 10);
721: End update_validate;
722: --
723: -- ----------------------------------------------------------------------------
724: -- |---------------------------< delete_validate >----------------------------|

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

729: --
730: l_proc varchar2(72) := g_package||'delete_validate';
731: --
732: Begin
733: hr_utility.set_location('Entering:'||l_proc, 5);
734: --
735: -- Call all supporting business operations
736: --
737: chk_delete

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

737: chk_delete
738: (p_rec => p_rec
739: );
740: --
741: hr_utility.set_location(' Leaving:'||l_proc, 10);
742: End delete_validate;
743: --
744: end hr_tpp_bus;