DBA Data[Home] [Help]

APPS.OTA_ENT_UPD dependencies on HR_API

Line 82: When hr_api.check_integrity_violated Then

78: --
79: hr_utility.set_location(' Leaving:'||l_proc, 10);
80: --
81: Exception
82: When hr_api.check_integrity_violated Then
83: -- A check constraint has been violated
84: --
85: ota_ent_shd.constraint_error
86: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

82: When hr_api.check_integrity_violated Then
83: -- A check constraint has been violated
84: --
85: ota_ent_shd.constraint_error
86: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
87: When hr_api.parent_integrity_violated Then
88: -- Parent integrity has been violated
89: --
90: ota_ent_shd.constraint_error

Line 87: When hr_api.parent_integrity_violated Then

83: -- A check constraint has been violated
84: --
85: ota_ent_shd.constraint_error
86: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
87: When hr_api.parent_integrity_violated Then
88: -- Parent integrity has been violated
89: --
90: ota_ent_shd.constraint_error
91: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

87: When hr_api.parent_integrity_violated Then
88: -- Parent integrity has been violated
89: --
90: ota_ent_shd.constraint_error
91: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
92: When hr_api.unique_integrity_violated Then
93: -- Unique integrity has been violated
94: --
95: ota_ent_shd.constraint_error

Line 92: When hr_api.unique_integrity_violated Then

88: -- Parent integrity has been violated
89: --
90: ota_ent_shd.constraint_error
91: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
92: When hr_api.unique_integrity_violated Then
93: -- Unique integrity has been violated
94: --
95: ota_ent_shd.constraint_error
96: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

92: When hr_api.unique_integrity_violated Then
93: -- Unique integrity has been violated
94: --
95: ota_ent_shd.constraint_error
96: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
97: When Others Then
98: --
99: Raise;
100: End update_dml;

Line 207: when hr_api.cannot_find_prog_unit then

203: );
204: --
205: exception
206: --
207: when hr_api.cannot_find_prog_unit then
208: --
209: hr_api.cannot_find_prog_unit_error
210: (p_module_name => 'OTA_EVENTS_TL'
211: ,p_hook_type => 'AU');

Line 209: hr_api.cannot_find_prog_unit_error

205: exception
206: --
207: when hr_api.cannot_find_prog_unit then
208: --
209: hr_api.cannot_find_prog_unit_error
210: (p_module_name => 'OTA_EVENTS_TL'
211: ,p_hook_type => 'AU');
212: --
213: end;

Line 272: If (p_rec.title = hr_api.g_varchar2) then

268: -- p_rec plsql record structure
269: -- to see if a system default is being used. If a system default
270: -- is being used then we must set to the 'current' argument value.
271: --
272: If (p_rec.title = hr_api.g_varchar2) then
273: p_rec.title :=
274: ota_ent_shd.g_old_rec.title;
275: End If;
276: If (p_rec.source_lang = hr_api.g_varchar2) then

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

272: If (p_rec.title = hr_api.g_varchar2) then
273: p_rec.title :=
274: ota_ent_shd.g_old_rec.title;
275: End If;
276: If (p_rec.source_lang = hr_api.g_varchar2) then
277: p_rec.source_lang :=
278: ota_ent_shd.g_old_rec.source_lang;
279: End If;
280: --

Line 344: ,p_title in varchar2 default hr_api.g_varchar2

340: Procedure upd
341: (p_effective_date in date
342: ,p_event_id in number
343: ,p_language in varchar2
344: ,p_title in varchar2 default hr_api.g_varchar2
345: ,p_source_lang in varchar2 default hr_api.g_varchar2
346: ) is
347: --
348: l_rec ota_ent_shd.g_rec_type;

Line 345: ,p_source_lang in varchar2 default hr_api.g_varchar2

341: (p_effective_date in date
342: ,p_event_id in number
343: ,p_language in varchar2
344: ,p_title in varchar2 default hr_api.g_varchar2
345: ,p_source_lang in varchar2 default hr_api.g_varchar2
346: ) is
347: --
348: l_rec ota_ent_shd.g_rec_type;
349: l_proc varchar2(72) := g_package||'upd';

Line 385: ,p_title in varchar2 default hr_api.g_varchar2

381: Procedure upd_tl
382: (p_effective_date in date
383: ,p_language_code in varchar2
384: ,p_event_id in number
385: ,p_title in varchar2 default hr_api.g_varchar2
386: ) is
387: --
388: -- Cursor to obtain the translation rows where the language or
389: -- source_lang match the specified language.