DBA Data[Home] [Help]

APPS.IRC_ISS_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: irc_iss_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: irc_iss_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: irc_iss_shd.constraint_error

Line 87: When hr_api.parent_integrity_violated Then

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

Line 92: When hr_api.unique_integrity_violated Then

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

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

Line 205: hr_api.cannot_find_prog_unit_error

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

Line 268: /*If (p_rec.search_criteria = hr_api.g_varchar2) then

264: -- p_rec plsql record structure
265: -- to see if a system default is being used. If a system default
266: -- is being used then we must set to the 'current' argument value.
267: --
268: /*If (p_rec.search_criteria = hr_api.g_varchar2) then
269: p_rec.search_criteria :=
270: irc_iss_shd.g_old_rec.search_criteria;
271: End If;*/
272: If (p_rec.vacancy_id = hr_api.g_number) then

Line 272: If (p_rec.vacancy_id = hr_api.g_number) then

268: /*If (p_rec.search_criteria = hr_api.g_varchar2) then
269: p_rec.search_criteria :=
270: irc_iss_shd.g_old_rec.search_criteria;
271: End If;*/
272: If (p_rec.vacancy_id = hr_api.g_number) then
273: p_rec.vacancy_id :=
274: irc_iss_shd.g_old_rec.vacancy_id;
275: End If;
276: --

Line 336: ,p_search_criteria in varchar2 default hr_api.g_varchar2

332: -- ----------------------------------------------------------------------------
333: Procedure upd
334: (p_saved_search_criteria_id in number
335: ,p_object_version_number in out nocopy number
336: ,p_search_criteria in varchar2 default hr_api.g_varchar2
337: ,p_vacancy_id in number default hr_api.g_number
338: ) is
339: --
340: l_rec irc_iss_shd.g_rec_type;

Line 337: ,p_vacancy_id in number default hr_api.g_number

333: Procedure upd
334: (p_saved_search_criteria_id in number
335: ,p_object_version_number in out nocopy number
336: ,p_search_criteria in varchar2 default hr_api.g_varchar2
337: ,p_vacancy_id in number default hr_api.g_number
338: ) is
339: --
340: l_rec irc_iss_shd.g_rec_type;
341: l_proc varchar2(72) := g_package||'upd';