DBA Data[Home] [Help]

APPS.IRC_IVC_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_ivc_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_ivc_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_ivc_shd.constraint_error

Line 87: When hr_api.parent_integrity_violated Then

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

Line 92: When hr_api.unique_integrity_violated Then

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

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

Line 211: hr_api.cannot_find_prog_unit_error

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

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

270: -- p_rec plsql record structure
271: -- to see if a system default is being used. If a system default
272: -- is being used then we must set to the 'current' argument value.
273: --
274: If (p_rec.consideration_status = hr_api.g_varchar2) then
275: p_rec.consideration_status :=
276: irc_ivc_shd.g_old_rec.consideration_status;
277: End If;
278: If (p_rec.party_id = hr_api.g_number) then

Line 278: If (p_rec.party_id = hr_api.g_number) then

274: If (p_rec.consideration_status = hr_api.g_varchar2) then
275: p_rec.consideration_status :=
276: irc_ivc_shd.g_old_rec.consideration_status;
277: End If;
278: If (p_rec.party_id = hr_api.g_number) then
279: p_rec.party_id :=
280: irc_ivc_shd.g_old_rec.party_id;
281: End If;
282: --

Line 350: ,p_party_id in number default hr_api.g_number

346: -- ----------------------------------------------------------------------------
347: Procedure upd
348: (p_effective_date in date
349: ,p_vacancy_consideration_id in number
350: ,p_party_id in number default hr_api.g_number
351: ,p_object_version_number in out nocopy number
352: ,p_consideration_status in varchar2 default hr_api.g_varchar2
353: ) is
354: --

Line 352: ,p_consideration_status in varchar2 default hr_api.g_varchar2

348: (p_effective_date in date
349: ,p_vacancy_consideration_id in number
350: ,p_party_id in number default hr_api.g_number
351: ,p_object_version_number in out nocopy number
352: ,p_consideration_status in varchar2 default hr_api.g_varchar2
353: ) is
354: --
355: l_rec irc_ivc_shd.g_rec_type;
356: l_proc varchar2(72) := g_package||'upd';