DBA Data[Home] [Help]

APPS.AME_ITC_BUS dependencies on HR_UTILITY

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

37: --
38: l_proc varchar2(72) := g_package || 'CHK_NAME';
39: --
40: Begin
41: hr_utility.set_location('Entering:'||l_proc,10);
42: hr_api.mandatory_arg_error(p_api_name => l_proc
43: ,p_argument => 'NAME'
44: ,p_argument_value => p_name
45: );

Line 46: hr_utility.set_location(' Leaving:'||l_proc,30);

42: hr_api.mandatory_arg_error(p_api_name => l_proc
43: ,p_argument => 'NAME'
44: ,p_argument_value => p_name
45: );
46: hr_utility.set_location(' Leaving:'||l_proc,30);
47: exception
48: when app_exception.application_exception then
49: if hr_multi_message.exception_add
50: (p_associated_column1 => 'AME_ITEM_CLASSES.NAME'

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

48: when app_exception.application_exception then
49: if hr_multi_message.exception_add
50: (p_associated_column1 => 'AME_ITEM_CLASSES.NAME'
51: ) then
52: hr_utility.set_location(' Leaving:'||l_proc, 40);
53: raise;
54: end if;
55: hr_utility.set_location(' Leaving:'||l_proc,50);
56: End chk_name;

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

51: ) then
52: hr_utility.set_location(' Leaving:'||l_proc, 40);
53: raise;
54: end if;
55: hr_utility.set_location(' Leaving:'||l_proc,50);
56: End chk_name;
57: -- ----------------------------------------------------------------------------
58: -- |------------------------< chk_unique >------------------------------------|
59: -- ----------------------------------------------------------------------------

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

96: l_proc varchar2(72) := g_package || 'CHK_UNIQUE';
97: l_dummy varchar2(1);
98: --
99: Begin
100: hr_utility.set_location('Entering:'||l_proc,10);
101: --
102: open csr_name;
103: fetch csr_name into l_dummy;
104: if csr_name%found then

Line 111: hr_utility.set_location(' Leaving:'||l_proc,30);

107: fnd_message.raise_error;
108: end if;
109: close csr_name;
110: --
111: hr_utility.set_location(' Leaving:'||l_proc,30);
112: exception
113: when app_exception.application_exception then
114: if hr_multi_message.exception_add
115: (p_associated_column1 => 'AME_ITEM_CLASSES.UNIQUE'

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

113: when app_exception.application_exception then
114: if hr_multi_message.exception_add
115: (p_associated_column1 => 'AME_ITEM_CLASSES.UNIQUE'
116: ) then
117: hr_utility.set_location(' Leaving:'||l_proc, 40);
118: raise;
119: end if;
120: hr_utility.set_location(' Leaving:'||l_proc,50);
121: End chk_unique;

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

116: ) then
117: hr_utility.set_location(' Leaving:'||l_proc, 40);
118: raise;
119: end if;
120: hr_utility.set_location(' Leaving:'||l_proc,50);
121: End chk_unique;
122: --
123: -- ----------------------------------------------------------------------------
124: -- |-----------------------------< CHK_DELETE >-------------------------------|

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

160: l_proc varchar2(72) := g_package || 'CHK_DELETE';
161: l_key varchar2(1);
162: --
163: Begin
164: hr_utility.set_location('Entering:'||l_proc,10);
165: -- Check if the item_class is seeded.
166: open csr_isSeeded;
167: fetch csr_isSeeded into l_key;
168: if(csr_isSeeded%found) then

Line 174: hr_utility.set_location(' Leaving:'||l_proc,30);

170: fnd_message.set_name('PER','AME_400765_SEEDED_ITC_CNT_DEL');
171: fnd_message.raise_error;
172: end if;
173: close csr_isSeeded;
174: hr_utility.set_location(' Leaving:'||l_proc,30);
175: exception
176: when app_exception.application_exception then
177: if hr_multi_message.exception_add
178: (p_associated_column1 => 'AME_ITEM_CLASS.DELETE'

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

176: when app_exception.application_exception then
177: if hr_multi_message.exception_add
178: (p_associated_column1 => 'AME_ITEM_CLASS.DELETE'
179: ) then
180: hr_utility.set_location(' Leaving:'||l_proc, 40);
181: raise;
182: end if;
183: hr_utility.set_location(' Leaving:'||l_proc,50);
184: End chk_delete;

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

179: ) then
180: hr_utility.set_location(' Leaving:'||l_proc, 40);
181: raise;
182: end if;
183: hr_utility.set_location(' Leaving:'||l_proc,50);
184: End chk_delete;
185: --
186: -- ----------------------------------------------------------------------------
187: -- |-----------------------< chk_non_updateable_args >------------------------|

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

435: --
436: l_proc varchar2(72) := g_package||'insert_validate';
437: --
438: Begin
439: hr_utility.set_location('Entering:'||l_proc, 5);
440: --
441: -- Validate Dependent Attributes
442: --
443: chk_name(p_name => p_rec.name);

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

445: chk_unique(p_name => p_rec.name
446: ,p_effective_date => p_effective_date
447: );
448:
449: hr_utility.set_location(' Leaving:'||l_proc, 10);
450: End insert_validate;
451: --
452: -- ----------------------------------------------------------------------------
453: -- |---------------------------< update_validate >----------------------------|

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

462: --
463: l_proc varchar2(72) := g_package||'update_validate';
464: --
465: Begin
466: hr_utility.set_location('Entering:'||l_proc, 5);
467: --
468: -- Validate Dependent Attributes
469: --
470: -- Call the datetrack update integrity operation

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

480: ,p_rec => p_rec
481: );
482: --
483: --
484: hr_utility.set_location(' Leaving:'||l_proc, 10);
485: End update_validate;
486: --
487: -- ----------------------------------------------------------------------------
488: -- |---------------------------< delete_validate >----------------------------|

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

497: --
498: l_proc varchar2(72) := g_package||'delete_validate';
499: --
500: Begin
501: hr_utility.set_location('Entering:'||l_proc, 5);
502: --
503: -- Call all supporting business operations
504: --
505: -- Check for seeded data

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

513: ,p_validation_end_date => p_validation_end_date
514: ,p_item_class_id => p_rec.item_class_id
515: );
516: --
517: hr_utility.set_location(' Leaving:'||l_proc, 10);
518: End delete_validate;
519: --
520: end ame_itc_bus;