DBA Data[Home] [Help]

APPS.IRC_IPD_INS dependencies on HR_API

Line 210: When hr_api.check_integrity_violated Then

206: --
207: --
208: hr_utility.set_location(' Leaving:'||l_proc, 10);
209: Exception
210: When hr_api.check_integrity_violated Then
211: -- A check constraint has been violated
212: --
213: irc_ipd_shd.constraint_error
214: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

210: When hr_api.check_integrity_violated Then
211: -- A check constraint has been violated
212: --
213: irc_ipd_shd.constraint_error
214: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
215: When hr_api.parent_integrity_violated Then
216: -- Parent integrity has been violated
217: --
218: irc_ipd_shd.constraint_error

Line 215: When hr_api.parent_integrity_violated Then

211: -- A check constraint has been violated
212: --
213: irc_ipd_shd.constraint_error
214: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
215: When hr_api.parent_integrity_violated Then
216: -- Parent integrity has been violated
217: --
218: irc_ipd_shd.constraint_error
219: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

215: When hr_api.parent_integrity_violated Then
216: -- Parent integrity has been violated
217: --
218: irc_ipd_shd.constraint_error
219: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
220: When hr_api.unique_integrity_violated Then
221: -- Unique integrity has been violated
222: --
223: irc_ipd_shd.constraint_error

Line 220: When hr_api.unique_integrity_violated Then

216: -- Parent integrity has been violated
217: --
218: irc_ipd_shd.constraint_error
219: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
220: When hr_api.unique_integrity_violated Then
221: -- Unique integrity has been violated
222: --
223: irc_ipd_shd.constraint_error
224: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

220: When hr_api.unique_integrity_violated Then
221: -- Unique integrity has been violated
222: --
223: irc_ipd_shd.constraint_error
224: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
225: When Others Then
226: --
227: Raise;
228: End insert_dml;

Line 477: when hr_api.cannot_find_prog_unit then

473: );
474: --
475: exception
476: --
477: when hr_api.cannot_find_prog_unit then
478: --
479: hr_api.cannot_find_prog_unit_error
480: (p_module_name => 'IRC_PENDING_DATA'
481: ,p_hook_type => 'AI');

Line 479: hr_api.cannot_find_prog_unit_error

475: exception
476: --
477: when hr_api.cannot_find_prog_unit then
478: --
479: hr_api.cannot_find_prog_unit_error
480: (p_module_name => 'IRC_PENDING_DATA'
481: ,p_hook_type => 'AI');
482: --
483: end;