DBA Data[Home] [Help]

APPS.IRC_IDT_SHD dependencies on HR_API

Line 178: hr_api.mandatory_arg_error

174: --
175: Begin
176: hr_utility.set_location('Entering:'||l_proc, 5);
177: --
178: hr_api.mandatory_arg_error
179: (p_api_name => l_proc
180: ,p_argument => 'DEFAULT_POSTING_ID'
181: ,p_argument_value => p_default_posting_id
182: );

Line 184: hr_api.mandatory_arg_error

180: ,p_argument => 'DEFAULT_POSTING_ID'
181: ,p_argument_value => p_default_posting_id
182: );
183: hr_utility.set_location(l_proc,6);
184: hr_api.mandatory_arg_error
185: (p_api_name => l_proc
186: ,p_argument => 'LANGUAGE'
187: ,p_argument_value => p_language
188: );

Line 224: When HR_Api.Object_Locked then

220: --
221: -- We need to trap the ORA LOCK exception
222: --
223: Exception
224: When HR_Api.Object_Locked then
225: --
226: -- The object is locked therefore we need to supply a meaningful
227: -- error message.
228: --

Line 569: When hr_api.check_integrity_violated Then

565: --
566: hr_utility.set_location(' Leaving:'||l_proc, 100);
567: --
568: Exception
569: When hr_api.check_integrity_violated Then
570: -- A check constraint has been violated
571: --
572: irc_idt_shd.constraint_error
573: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

569: When hr_api.check_integrity_violated Then
570: -- A check constraint has been violated
571: --
572: irc_idt_shd.constraint_error
573: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
574: When hr_api.parent_integrity_violated Then
575: -- Parent integrity has been violated
576: --
577: irc_idt_shd.constraint_error

Line 574: When hr_api.parent_integrity_violated Then

570: -- A check constraint has been violated
571: --
572: irc_idt_shd.constraint_error
573: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
574: When hr_api.parent_integrity_violated Then
575: -- Parent integrity has been violated
576: --
577: irc_idt_shd.constraint_error
578: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

574: When hr_api.parent_integrity_violated Then
575: -- Parent integrity has been violated
576: --
577: irc_idt_shd.constraint_error
578: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
579: When hr_api.unique_integrity_violated Then
580: -- Unique integrity has been violated
581: --
582: irc_idt_shd.constraint_error

Line 579: When hr_api.unique_integrity_violated Then

575: -- Parent integrity has been violated
576: --
577: irc_idt_shd.constraint_error
578: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
579: When hr_api.unique_integrity_violated Then
580: -- Unique integrity has been violated
581: --
582: irc_idt_shd.constraint_error
583: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

579: When hr_api.unique_integrity_violated Then
580: -- Unique integrity has been violated
581: --
582: irc_idt_shd.constraint_error
583: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
584: When Others Then
585: --
586: Raise;
587: End clob_dml;