DBA Data[Home] [Help]

APPS.PER_PGT_BUS dependencies on HR_UTILITY

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

37: l_proc varchar2(72) := g_package||'set_security_group_id';
38: --
39: begin
40: --
41: hr_utility.set_location('Entering:'|| l_proc, 10);
42: --
43: -- Ensure that all the mandatory parameter are not null
44: --
45: hr_api.mandatory_arg_error

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

72: (p_security_group_id => l_security_group_id
73: );
74: end if;
75: --
76: hr_utility.set_location(' Leaving:'|| l_proc, 20);
77: --
78: end set_security_group_id;
79: --
80: -- ---------------------------------------------------------------------------

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

101: l_proc varchar2(72) := g_package||'return_legislation_code';
102: --
103: Begin
104: --
105: hr_utility.set_location('Entering:'|| l_proc, 10);
106: --
107: -- Ensure that all the mandatory parameter are not null
108: --
109: hr_api.mandatory_arg_error

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

119: -- call to this function. Just return the value in the global
120: -- variable.
121: --
122: l_legislation_code := per_pgt_bus.g_legislation_code;
123: hr_utility.set_location(l_proc, 20);
124: else
125: --
126: -- The ID is different to the last call to this function
127: -- or this is the first call to this function.

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

136: close csr_leg_code;
137: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
138: fnd_message.raise_error;
139: end if;
140: hr_utility.set_location(l_proc,30);
141: --
142: -- Set the global variables so the values are
143: -- available for the next call to this function.
144: --

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

145: close csr_leg_code;
146: per_pgt_bus.g_hier_node_type_id := p_hier_node_type_id;
147: per_pgt_bus.g_legislation_code := l_legislation_code;
148: end if;
149: hr_utility.set_location(' Leaving:'|| l_proc, 40);
150: return l_legislation_code;
151: end return_legislation_code;
152: --
153: -- ----------------------------------------------------------------------------

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

241: l_proc varchar2(72) := g_package||'chk_hierarchy_type';
242: --
243: Begin
244: --
245: hr_utility.set_location('Entering:'||l_proc, 5);
246: --
247:
248: hr_api.mandatory_arg_error
249: (p_api_name => l_proc

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

272: (p_associated_column1 => 'PER_GEN_HIER_NODE_TYPES.HIERARCHY_TYPE') then
273: raise;
274: End If;
275: --
276: hr_utility.set_location('Leaving:'||l_proc, 50);
277: --
278: End chk_hierarchy_type;
279: --
280: --

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

329: l_dummy varchar2(1) := null;
330: --
331: Begin
332: --
333: hr_utility.set_location('Entering:'||l_proc, 5);
334: --
335:
336: hr_api.mandatory_arg_error
337: (p_api_name => l_proc

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

363: hr_multi_message.add
364: (p_associated_column1 => 'PER_GEN_HIER_NODE_TYPES.CHILD_NODE_TYPE');
365: End If;
366: --
367: hr_utility.set_location(l_proc, 10);
368: --
369: If not(l_err_flag) and
370: hr_multi_message.no_exclusive_error('PER_GEN_HIER_NODE_TYPES.HIERARCHY_TYPE') then
371: --

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

387: Else
388: Close csr_node;
389: End if;
390: --
391: hr_utility.set_location(l_proc, 15);
392: --
393: -- check that the child_node is not the same as the parent node
394: --
395: If not(l_err_flag) and p_child_node_type = nvl(p_parent_node_type,-999) then

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

404: End If;
405: End If;
406:
407:
408: hr_utility.set_location(l_proc, 20);
409: --
410: -- tests if parent node type is set
411: --
412: If p_parent_node_type IS NOT NULL then

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

428: (p_associated_column1 => 'PER_GEN_HIER_NODE_TYPES.PARENT_NODE_TYPE');
429: --
430: End If;
431: --
432: hr_utility.set_location(l_proc, 30);
433: --
434: If not(l_err_parent_flag) and
435: hr_multi_message.no_exclusive_error('PER_GEN_HIER_NODE_TYPES.HIERARCHY_TYPE') then
436: --

Line 452: hr_utility.set_location(l_proc, 35);

448: (p_associated_column1 => 'PER_GEN_HIER_NODE_TYPES.PARENT_NODE_TYPE');
449: Else
450: Close csr_node;
451: End If;
452: hr_utility.set_location(l_proc, 35);
453:
454: -- conditionally check that the parent_node is not being updated to the same
455: -- value as the child node
456: If (not(l_err_flag) and not(l_err_parent_flag)) and

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

463: End If;
464: End If;
465: End If;
466: Else
467: hr_utility.set_location(l_proc, 40);
468: If (hr_multi_message.no_exclusive_error('PER_GEN_HIER_NODE_TYPES.HIERARCHY_TYPE')
469: and p_hier_node_type_id is null or (p_hier_node_type_id is not null
470: and per_pgt_shd.g_old_rec.parent_node_type IS NOT NULL )) then
471: -- parent node is null so if ins or upd and this isnt already top node

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

483: End If;
484: End If;
485: End If;
486: --
487: hr_utility.set_location('Leaving:'||l_proc, 50);
488: --
489: End chk_parent_child_node_type;
490: --
491: --

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

526: l_dummy varchar2(1) := null;
527: --
528: Begin
529: --
530: hr_utility.set_location('Entering:'||l_proc, 5);
531:
532: If p_child_value_set is null then
533: fnd_message.set_name('PER', 'HR_289911_PGT_CHILD_VS_NULL');
534: fnd_message.raise_error;

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

566: Exception
567: when app_exception.application_exception then
568: If hr_multi_message.exception_add
569: (p_associated_column1 => 'PER_GEN_HIER_NODE_TYPES.CHILD_VALUE_SET') then
570: hr_utility.set_location('Leaving:'||l_proc, 40);
571: raise;
572: End If;
573: --
574: hr_utility.set_location('Leaving:'||l_proc, 50);

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

570: hr_utility.set_location('Leaving:'||l_proc, 40);
571: raise;
572: End If;
573: --
574: hr_utility.set_location('Leaving:'||l_proc, 50);
575: --
576: End chk_child_value_set;
577: --
578: -- ----------------------------------------------------------------------------

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

585: --
586: l_proc varchar2(72) := g_package||'insert_validate';
587: --
588: Begin
589: hr_utility.set_location('Entering:'||l_proc, 5);
590: --
591: -- Call all supporting business operations
592: --
593: -- EDIT_HERE: The following call to hr_api.validate_bus_grp_id

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

634: -- one error has been found then abort further validation.
635: --
636: hr_multi_message.end_validation_set;
637: --
638: hr_utility.set_location(' Leaving:'||l_proc, 10);
639: End insert_validate;
640: --
641: -- ----------------------------------------------------------------------------
642: -- |---------------------------< update_validate >----------------------------|

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

648: --
649: l_proc varchar2(72) := g_package||'update_validate';
650: --
651: Begin
652: hr_utility.set_location('Entering:'||l_proc, 5);
653: --
654: -- Call all supporting business operations
655: --
656: If p_rec.business_group_id is not null then

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

686: ,p_rec => p_rec
687: );
688: --
689: --
690: hr_utility.set_location(' Leaving:'||l_proc, 10);
691: End update_validate;
692: --
693: -- ----------------------------------------------------------------------------
694: -- |---------------------------< delete_validate >----------------------------|

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

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

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

741: -- end bug 2982313.
742:
743:
744:
745: hr_utility.set_location(' Leaving:'||l_proc, 10);
746: End delete_validate;
747: --
748: end per_pgt_bus;