DBA Data[Home] [Help]

APPS.AME_ACL_UPD dependencies on HR_API

Line 93: When hr_api.check_integrity_violated Then

89: --
90: hr_utility.set_location(' Leaving:'||l_proc, 10);
91: --
92: Exception
93: When hr_api.check_integrity_violated Then
94: -- A check constraint has been violated
95: --
96: ame_acl_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

93: When hr_api.check_integrity_violated Then
94: -- A check constraint has been violated
95: --
96: ame_acl_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.parent_integrity_violated Then
99: -- Parent integrity has been violated
100: --
101: ame_acl_shd.constraint_error

Line 98: When hr_api.parent_integrity_violated Then

94: -- A check constraint has been violated
95: --
96: ame_acl_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.parent_integrity_violated Then
99: -- Parent integrity has been violated
100: --
101: ame_acl_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

98: When hr_api.parent_integrity_violated Then
99: -- Parent integrity has been violated
100: --
101: ame_acl_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103: When hr_api.unique_integrity_violated Then
104: -- Unique integrity has been violated
105: --
106: ame_acl_shd.constraint_error

Line 103: When hr_api.unique_integrity_violated Then

99: -- Parent integrity has been violated
100: --
101: ame_acl_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103: When hr_api.unique_integrity_violated Then
104: -- Unique integrity has been violated
105: --
106: ame_acl_shd.constraint_error
107: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 107: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

103: When hr_api.unique_integrity_violated Then
104: -- Unique integrity has been violated
105: --
106: ame_acl_shd.constraint_error
107: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
108: When Others Then
109: --
110: Raise;
111: End update_dml;

Line 216: when hr_api.cannot_find_prog_unit then

212: );
213: --
214: exception
215: --
216: when hr_api.cannot_find_prog_unit then
217: --
218: hr_api.cannot_find_prog_unit_error
219: (p_module_name => 'AME_ACTIONS_TL'
220: ,p_hook_type => 'AU');

Line 218: hr_api.cannot_find_prog_unit_error

214: exception
215: --
216: when hr_api.cannot_find_prog_unit then
217: --
218: hr_api.cannot_find_prog_unit_error
219: (p_module_name => 'AME_ACTIONS_TL'
220: ,p_hook_type => 'AU');
221: --
222: end;

Line 281: If (p_rec.source_lang = hr_api.g_varchar2) then

277: -- p_rec plsql record structure
278: -- to see if a system default is being used. If a system default
279: -- is being used then we must set to the 'current' argument value.
280: --
281: If (p_rec.source_lang = hr_api.g_varchar2) then
282: p_rec.source_lang :=
283: ame_acl_shd.g_old_rec.source_lang;
284: End If;
285: If (p_rec.description = hr_api.g_varchar2) then

Line 285: If (p_rec.description = hr_api.g_varchar2) then

281: If (p_rec.source_lang = hr_api.g_varchar2) then
282: p_rec.source_lang :=
283: ame_acl_shd.g_old_rec.source_lang;
284: End If;
285: If (p_rec.description = hr_api.g_varchar2) then
286: p_rec.description :=
287: ame_acl_shd.g_old_rec.description;
288: End If;
289: --

Line 349: ,p_source_lang in varchar2 default hr_api.g_varchar2

345: -- ----------------------------------------------------------------------------
346: Procedure upd
347: (p_action_id in number
348: ,p_language in varchar2
349: ,p_source_lang in varchar2 default hr_api.g_varchar2
350: ,p_description in varchar2 default hr_api.g_varchar2
351: ) is
352: --
353: l_rec ame_acl_shd.g_rec_type;

Line 350: ,p_description in varchar2 default hr_api.g_varchar2

346: Procedure upd
347: (p_action_id in number
348: ,p_language in varchar2
349: ,p_source_lang in varchar2 default hr_api.g_varchar2
350: ,p_description in varchar2 default hr_api.g_varchar2
351: ) is
352: --
353: l_rec ame_acl_shd.g_rec_type;
354: l_proc varchar2(72) := g_package||'upd';

Line 388: ,p_description in varchar2 default hr_api.g_varchar2

384: -- ----------------------------------------------------------------------------
385: Procedure upd_tl
386: (p_language_code in varchar2
387: ,p_action_id in number
388: ,p_description in varchar2 default hr_api.g_varchar2
389: ) is
390: --
391: -- Cursor to obtain the translation rows where the language or
392: -- source_lang match the specified language.