DBA Data[Home] [Help]

APPS.HR_WPT_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: hr_wpt_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: hr_wpt_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: hr_wpt_shd.constraint_error

Line 87: When hr_api.parent_integrity_violated Then

83: -- A check constraint has been violated
84: --
85: hr_wpt_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: hr_wpt_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: hr_wpt_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: hr_wpt_shd.constraint_error

Line 92: When hr_api.unique_integrity_violated Then

88: -- Parent integrity has been violated
89: --
90: hr_wpt_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: hr_wpt_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: hr_wpt_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 205: when hr_api.cannot_find_prog_unit then

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

Line 207: hr_api.cannot_find_prog_unit_error

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

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

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

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

270: If (p_rec.source_lang = hr_api.g_varchar2) then
271: p_rec.source_lang :=
272: hr_wpt_shd.g_old_rec.source_lang;
273: End If;
274: If (p_rec.title = hr_api.g_varchar2) then
275: p_rec.title :=
276: hr_wpt_shd.g_old_rec.title;
277: End If;
278: --

Line 332: ,p_source_lang in varchar2 default hr_api.g_varchar2

328: -- ----------------------------------------------------------------------------
329: Procedure upd
330: (p_window_property_id in number
331: ,p_language in varchar2
332: ,p_source_lang in varchar2 default hr_api.g_varchar2
333: ,p_title in varchar2 default hr_api.g_varchar2
334: ) is
335: --
336: l_rec hr_wpt_shd.g_rec_type;

Line 333: ,p_title in varchar2 default hr_api.g_varchar2

329: Procedure upd
330: (p_window_property_id in number
331: ,p_language in varchar2
332: ,p_source_lang in varchar2 default hr_api.g_varchar2
333: ,p_title in varchar2 default hr_api.g_varchar2
334: ) is
335: --
336: l_rec hr_wpt_shd.g_rec_type;
337: l_proc varchar2(72) := g_package||'upd';

Line 371: ,p_title in varchar2 default hr_api.g_varchar2

367: -- ----------------------------------------------------------------------------
368: Procedure upd_tl
369: (p_language_code in varchar2
370: ,p_window_property_id in number
371: ,p_title in varchar2 default hr_api.g_varchar2
372: ) is
373: --
374: -- Cursor to obtain the translation rows where the language or
375: -- source_lang match the specified language.