DBA Data[Home] [Help]

APPS.AME_AXU_BUS dependencies on HR_UTILITY

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

64: exception
65: when app_exception.application_exception then
66: if hr_multi_message.exception_add
67: (p_associated_column1 => 'ACTION_TYPE_ID') then
68: hr_utility.set_location(' Leaving:'|| l_proc, 50);
69: raise;
70: end if;
71: hr_utility.set_location(' Leaving:'|| l_proc, 60);
72: end chk_action_type_id;

Line 71: hr_utility.set_location(' Leaving:'|| l_proc, 60);

67: (p_associated_column1 => 'ACTION_TYPE_ID') then
68: hr_utility.set_location(' Leaving:'|| l_proc, 50);
69: raise;
70: end if;
71: hr_utility.set_location(' Leaving:'|| l_proc, 60);
72: end chk_action_type_id;
73: -- ---------------------------------------------------------------------------
74: -- |----------------------< chk_usage_already_exists >-----------------------|
75: -- ---------------------------------------------------------------------------

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

119: exception
120: when app_exception.application_exception then
121: if hr_multi_message.exception_add
122: (p_associated_column1 => 'ACTION_TYPE_ID') then
123: hr_utility.set_location(' Leaving:'|| l_proc, 50);
124: raise;
125: end if;
126: hr_utility.set_location(' Leaving:'|| l_proc, 60);
127: end chk_usage_already_exists;

Line 126: hr_utility.set_location(' Leaving:'|| l_proc, 60);

122: (p_associated_column1 => 'ACTION_TYPE_ID') then
123: hr_utility.set_location(' Leaving:'|| l_proc, 50);
124: raise;
125: end if;
126: hr_utility.set_location(' Leaving:'|| l_proc, 60);
127: end chk_usage_already_exists;
128: -- ---------------------------------------------------------------------------
129: -- |----------------------< chk_rule_type>------------------------------------|
130: -- ---------------------------------------------------------------------------

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

186: exception
187: when app_exception.application_exception then
188: if hr_multi_message.exception_add
189: (p_associated_column1 => 'RULE_TYPE') then
190: hr_utility.set_location(' Leaving:'|| l_proc, 50);
191: raise;
192: end if;
193: hr_utility.set_location(' Leaving:'|| l_proc, 60);
194: end chk_rule_type;

Line 193: hr_utility.set_location(' Leaving:'|| l_proc, 60);

189: (p_associated_column1 => 'RULE_TYPE') then
190: hr_utility.set_location(' Leaving:'|| l_proc, 50);
191: raise;
192: end if;
193: hr_utility.set_location(' Leaving:'|| l_proc, 60);
194: end chk_rule_type;
195: -- ----------------------------------------------------------------------------
196: -- |-----------------------< chk_non_updateable_args >------------------------|
197: -- ----------------------------------------------------------------------------

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

305: exception
306: when app_exception.application_exception then
307: if hr_multi_message.exception_add
308: (p_associated_column1 => 'ACTION_TYPE_ID') then
309: hr_utility.set_location(' Leaving:'|| l_proc, 50);
310: raise;
311: end if;
312: hr_utility.set_location(' Leaving:'|| l_proc, 60);
313: end chk_delete;

Line 312: hr_utility.set_location(' Leaving:'|| l_proc, 60);

308: (p_associated_column1 => 'ACTION_TYPE_ID') then
309: hr_utility.set_location(' Leaving:'|| l_proc, 50);
310: raise;
311: end if;
312: hr_utility.set_location(' Leaving:'|| l_proc, 60);
313: end chk_delete;
314: -- ----------------------------------------------------------------------------
315: -- |--------------------------< dt_update_validate >--------------------------|
316: -- ----------------------------------------------------------------------------

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

498: --
499: l_proc varchar2(72) := g_package||'insert_validate';
500: --
501: Begin
502: hr_utility.set_location('Entering:'||l_proc, 5);
503: --
504: -- Validate Dependent Attributes
505: -- Action Type Id
506: chk_action_type_id(p_effective_date => p_effective_date,

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

509: (p_action_type_id => p_rec.action_type_id);
510: --
511: chk_rule_type(p_rule_type => p_rec.rule_type);
512: --
513: hr_utility.set_location(' Leaving:'||l_proc, 10);
514: End insert_validate;
515: --
516: -- ----------------------------------------------------------------------------
517: -- |---------------------------< update_validate >----------------------------|

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

526: --
527: l_proc varchar2(72) := g_package||'update_validate';
528: --
529: Begin
530: hr_utility.set_location('Entering:'||l_proc, 5);
531: --
532: -- Validate Dependent Attributes
533: --
534: -- Call the datetrack update integrity operation

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

544: ,p_rec => p_rec
545: );
546: --
547: --
548: hr_utility.set_location(' Leaving:'||l_proc, 10);
549: End update_validate;
550: --
551: -- ----------------------------------------------------------------------------
552: -- |---------------------------< delete_validate >----------------------------|

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

561: --
562: l_proc varchar2(72) := g_package||'delete_validate';
563: --
564: Begin
565: hr_utility.set_location('Entering:'||l_proc, 5);
566: --
567: chk_delete(p_action_type_id => p_rec.action_type_id);
568: -- Call all supporting business operations
569: --

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

574: ,p_action_type_id => p_rec.action_type_id
575: ,p_rule_type => p_rec.rule_type
576: );
577: --
578: hr_utility.set_location(' Leaving:'||l_proc, 10);
579: End delete_validate;
580: --
581: end ame_axu_bus;