DBA Data[Home] [Help]

APPS.AME_STV_BUS dependencies on HR_UTILITY

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

53: l_key2 varchar2(30);
54: l_proc varchar2(72) := g_package || 'CHK_CONDITION_ID';
55: --
56: Begin
57: hr_utility.set_location('Entering:'||l_proc,10);
58: hr_api.mandatory_arg_error(p_api_name => l_proc
59: ,p_argument => 'CONDITION_ID'
60: ,p_argument_value => p_condition_id
61: );

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

71: fnd_message.set_name('PER', 'AME_400508_ATTR_TYP_NOT_STR');
72: fnd_message.raise_error;
73: end if;
74: close csr_name;
75: hr_utility.set_location(' Leaving:'||l_proc,30);
76: exception
77: when app_exception.application_exception then
78: if hr_multi_message.exception_add
79: (p_associated_column1 => 'AME_STRING_VALUES.CONDITION_ID'

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

77: when app_exception.application_exception then
78: if hr_multi_message.exception_add
79: (p_associated_column1 => 'AME_STRING_VALUES.CONDITION_ID'
80: ) then
81: hr_utility.set_location(' Leaving:'||l_proc, 40);
82: raise;
83: end if;
84: hr_utility.set_location(' Leaving:'||l_proc,50);
85: End chk_condition_id;

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

80: ) then
81: hr_utility.set_location(' Leaving:'||l_proc, 40);
82: raise;
83: end if;
84: hr_utility.set_location(' Leaving:'||l_proc,50);
85: End chk_condition_id;
86: --
87: -- ----------------------------------------------------------------------------
88: -- |-------------------------< CHK_STRING_VALUE >-----------------------------|

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

129: l_key varchar2(1);
130: l_proc varchar2(72) := g_package || 'CHK_STRING_VALUE';
131: --
132: Begin
133: hr_utility.set_location('Entering:'||l_proc,10);
134:
135: if(p_string_value is null) then
136: fnd_message.set_name('PER','AME_400526_STR_COND_STR_NULL');
137: fnd_message.raise_error;

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

150: fnd_message.set_name('PER', 'AME_400509_DUP_STRVAL_CON');
151: fnd_message.raise_error;
152: end if;
153: close csr_name;
154: hr_utility.set_location(' Leaving:'||l_proc,30);
155: exception
156: when app_exception.application_exception then
157: if hr_multi_message.exception_add
158: (p_associated_column1 => 'AME_STRING_VALUES.STRING_VALUE'

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

156: when app_exception.application_exception then
157: if hr_multi_message.exception_add
158: (p_associated_column1 => 'AME_STRING_VALUES.STRING_VALUE'
159: ) then
160: hr_utility.set_location(' Leaving:'||l_proc, 40);
161: raise;
162: end if;
163: hr_utility.set_location(' Leaving:'||l_proc,50);
164: End chk_string_value;

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

159: ) then
160: hr_utility.set_location(' Leaving:'||l_proc, 40);
161: raise;
162: end if;
163: hr_utility.set_location(' Leaving:'||l_proc,50);
164: End chk_string_value;
165: --
166: -- ----------------------------------------------------------------------------
167: -- |-----------------------< chk_non_updateable_args >------------------------|

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

428: --
429: l_proc varchar2(72) := g_package||'insert_validate';
430: --
431: Begin
432: hr_utility.set_location('Entering:'||l_proc, 5);
433: --
434: -- Validate Dependent Attributes
435: --
436: -- Developer entered calls to validate procedures.

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

441: chk_string_value(p_rec.string_value
442: ,p_rec.condition_id
443: ,p_effective_date
444: );
445: hr_utility.set_location(' Leaving:'||l_proc, 10);
446: End insert_validate;
447: --
448: -- ----------------------------------------------------------------------------
449: -- |---------------------------< update_validate >----------------------------|

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

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

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

476: ,p_rec => p_rec
477: );
478: --
479: --
480: hr_utility.set_location(' Leaving:'||l_proc, 10);
481: End update_validate;
482: --
483: -- ----------------------------------------------------------------------------
484: -- |---------------------------< delete_validate >----------------------------|

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

493: --
494: l_proc varchar2(72) := g_package||'delete_validate';
495: --
496: Begin
497: hr_utility.set_location('Entering:'||l_proc, 5);
498: --
499: -- Call all supporting business operations
500: --
501: dt_delete_validate

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

505: ,p_condition_id => p_rec.condition_id
506: ,p_string_value => p_rec.string_value
507: );
508: --
509: hr_utility.set_location(' Leaving:'||l_proc, 10);
510: End delete_validate;
511: --
512: end ame_stv_bus;