DBA Data[Home] [Help]

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

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

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

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

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

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

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

104: close csr_leg_code;
105: hr_wnp_bus.g_window_property_id:= p_window_property_id;
106: hr_wnp_bus.g_legislation_code := l_legislation_code;
107: end if;
108: hr_utility.set_location(' Leaving:'|| l_proc, 40);
109: return l_legislation_code;
110: end return_legislation_code;
111: --
112: -- ----------------------------------------------------------------------------

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

143: --
144: l_proc varchar2(72) := g_package || 'chk_ddf';
145: --
146: begin
147: hr_utility.set_location('Entering:'||l_proc,10);
148: --
149: if ((p_rec.window_property_id is not null) and (
150: nvl(hr_wnp_shd.g_old_rec.information_category, hr_api.g_varchar2) <>
151: nvl(p_rec.information_category, hr_api.g_varchar2) or

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

282: ,p_attribute30_value => p_rec.information30
283: );
284: end if;
285: --
286: hr_utility.set_location(' Leaving:'||l_proc,20);
287: end chk_ddf;
288: --
289: -- ----------------------------------------------------------------------------
290: -- |-----------------------< chk_non_updateable_args >------------------------|

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

370: l_proc varchar2(72) := g_package || 'chk_form_and_template_window';
371: l_api_updating boolean;
372: --
373: Begin
374: hr_utility.set_location('Entering:'||l_proc, 10);
375: --
376: -- One and only one of form_window_id and template_window_id must be given
377: --
378: if not ( ( p_form_window_id is not null

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

384: fnd_message.set_token('STEP','10');
385: fnd_message.raise_error;
386: end if;
387: --
388: hr_utility.set_location('Leaving:'||l_proc, 100);
389: End chk_form_and_template_window;
390: --
391: -- ----------------------------------------------------------------------------
392: -- |--------------------------< chk_form_window_id >--------------------------|

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

400: l_api_updating boolean;
401: l_canvas_type varchar2(30);
402: --
403: Begin
404: hr_utility.set_location('Entering:'||l_proc, 10);
405: --
406: -- No additional validation required
407: --
408: null;

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

406: -- No additional validation required
407: --
408: null;
409: --
410: hr_utility.set_location('Leaving:'||l_proc, 100);
411: End chk_form_window_id;
412: --
413: -- ----------------------------------------------------------------------------
414: -- |------------------------< chk_template_window_id >------------------------|

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

422: l_api_updating boolean;
423: l_canvas_type varchar2(30);
424: --
425: Begin
426: hr_utility.set_location('Entering:'||l_proc, 10);
427: --
428: -- No additional validation required
429: --
430: null;

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

428: -- No additional validation required
429: --
430: null;
431: --
432: hr_utility.set_location('Leaving:'||l_proc, 100);
433: End chk_template_window_id;
434: --
435: -- ----------------------------------------------------------------------------
436: -- |------------------------------< chk_height >------------------------------|

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

443: l_proc varchar2(72) := g_package || 'chk_height';
444: l_api_updating boolean;
445: --
446: Begin
447: hr_utility.set_location('Entering:'||l_proc, 10);
448: --
449: -- Height must be greater than or equal to zero, if given
450: --
451: if (p_height is not null) then

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

449: -- Height must be greater than or equal to zero, if given
450: --
451: if (p_height is not null) then
452: --
453: hr_utility.set_location(l_proc,30);
454: --
455: if (p_height < 0) then
456: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
457: fnd_message.set_token('PROCEDURE', l_proc);

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

460: end if;
461: --
462: end if;
463: --
464: hr_utility.set_location('Leaving:'||l_proc, 100);
465: End chk_height;
466: --
467: -- ----------------------------------------------------------------------------
468: -- |------------------------------< chk_width >-------------------------------|

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

475: l_proc varchar2(72) := g_package || 'chk_width';
476: l_api_updating boolean;
477: --
478: Begin
479: hr_utility.set_location('Entering:'||l_proc, 10);
480: --
481: -- Width must be greater than or equal to zero, if given
482: --
483: if (p_width is not null) then

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

481: -- Width must be greater than or equal to zero, if given
482: --
483: if (p_width is not null) then
484: --
485: hr_utility.set_location(l_proc,30);
486: --
487: if (p_width < 0) then
488: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
489: fnd_message.set_token('PROCEDURE', l_proc);

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

492: end if;
493: --
494: end if;
495: --
496: hr_utility.set_location('Leaving:'||l_proc, 100);
497: End chk_width;
498: --
499: -- ----------------------------------------------------------------------------
500: -- |-----------------------------< chk_x_position >---------------------------|

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

507: l_proc varchar2(72) := g_package || 'chk_x_position';
508: l_api_updating boolean;
509: --
510: Begin
511: hr_utility.set_location('Entering:'||l_proc, 10);
512: --
513: -- X position must be greater than or equal to zero,if given
514: --
515: if (p_x_position is not null) then

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

513: -- X position must be greater than or equal to zero,if given
514: --
515: if (p_x_position is not null) then
516: --
517: hr_utility.set_location(l_proc,30);
518: --
519: if (p_x_position < 0) then
520: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
521: fnd_message.set_token('PROCEDURE', l_proc);

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

524: end if;
525: --
526: end if;
527: --
528: hr_utility.set_location('Leaving:'||l_proc, 100);
529: End chk_x_position;
530: --
531: -- ----------------------------------------------------------------------------
532: -- |-----------------------------< chk_y_position >---------------------------|

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

539: l_proc varchar2(72) := g_package || 'chk_y_position';
540: l_api_updating boolean;
541: --
542: Begin
543: hr_utility.set_location('Entering:'||l_proc, 10);
544: --
545: -- Y position must be greater than or equal to zero, if given
546: --
547: if (p_y_position is not null) then

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

545: -- Y position must be greater than or equal to zero, if given
546: --
547: if (p_y_position is not null) then
548: --
549: hr_utility.set_location(l_proc,30);
550: --
551: if (p_y_position < 0) then
552: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
553: fnd_message.set_token('PROCEDURE', l_proc);

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

556: end if;
557: --
558: end if;
559: --
560: hr_utility.set_location('Leaving:'||l_proc, 100);
561: End chk_y_position;
562: --
563: -- ----------------------------------------------------------------------------
564: -- |------------------------------< chk_delete >------------------------------|

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

569: --
570: l_proc varchar2(72) := g_package||'chk_delete';
571: --
572: Begin
573: hr_utility.set_location('Entering:'||l_proc, 5);
574: --
575: -- No additional validation required
576: --
577: null;

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

575: -- No additional validation required
576: --
577: null;
578: --
579: hr_utility.set_location(' Leaving:'||l_proc, 10);
580: End chk_delete;
581: --
582: -- ----------------------------------------------------------------------------
583: -- |---------------------------< insert_validate >----------------------------|

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

588: --
589: l_proc varchar2(72) := g_package||'insert_validate';
590: --
591: Begin
592: hr_utility.set_location('Entering:'||l_proc, 5);
593: --
594: -- Call all supporting business operations
595: -- No business group context. HR_STANDARD_LOOKUPS used for validation.
596: --

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

633: chk_ddf
634: (p_rec => p_rec
635: );
636: --
637: hr_utility.set_location(' Leaving:'||l_proc, 10);
638: End insert_validate;
639: --
640: -- ----------------------------------------------------------------------------
641: -- |---------------------------< update_validate >----------------------------|

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

646: --
647: l_proc varchar2(72) := g_package||'update_validate';
648: --
649: Begin
650: hr_utility.set_location('Entering:'||l_proc, 5);
651: --
652: -- Call all supporting business operations
653: -- No business group context. HR_STANDARD_LOOKUPS used for validation.
654: --

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

695: chk_ddf
696: (p_rec => p_rec
697: );
698: --
699: hr_utility.set_location(' Leaving:'||l_proc, 10);
700: End update_validate;
701: --
702: -- ----------------------------------------------------------------------------
703: -- |---------------------------< delete_validate >----------------------------|

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

708: --
709: l_proc varchar2(72) := g_package||'delete_validate';
710: --
711: Begin
712: hr_utility.set_location('Entering:'||l_proc, 5);
713: --
714: -- Call all supporting business operations
715: --
716: chk_delete

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

716: chk_delete
717: (p_rec => p_rec
718: );
719: --
720: hr_utility.set_location(' Leaving:'||l_proc, 10);
721: End delete_validate;
722: --
723: end hr_wnp_bus;