DBA Data[Home] [Help]

APPS.HXC_RTR_INS dependencies on HR_API

Line 103: When hr_api.check_integrity_violated Then

99: if g_debug then
100: hr_utility.set_location(' Leaving:'||l_proc, 10);
101: end if;
102: Exception
103: When hr_api.check_integrity_violated Then
104: -- A check constraint has been violated
105: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
106: hxc_rtr_shd.constraint_error
107: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

103: When hr_api.check_integrity_violated Then
104: -- A check constraint has been violated
105: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
106: hxc_rtr_shd.constraint_error
107: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
108: When hr_api.parent_integrity_violated Then
109: -- Parent integrity has been violated
110: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
111: hxc_rtr_shd.constraint_error

Line 108: When hr_api.parent_integrity_violated Then

104: -- A check constraint has been violated
105: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
106: hxc_rtr_shd.constraint_error
107: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
108: When hr_api.parent_integrity_violated Then
109: -- Parent integrity has been violated
110: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
111: hxc_rtr_shd.constraint_error
112: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

108: When hr_api.parent_integrity_violated Then
109: -- Parent integrity has been violated
110: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
111: hxc_rtr_shd.constraint_error
112: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
113: When hr_api.unique_integrity_violated Then
114: -- Unique integrity has been violated
115: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
116: hxc_rtr_shd.constraint_error

Line 113: When hr_api.unique_integrity_violated Then

109: -- Parent integrity has been violated
110: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
111: hxc_rtr_shd.constraint_error
112: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
113: When hr_api.unique_integrity_violated Then
114: -- Unique integrity has been violated
115: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
116: hxc_rtr_shd.constraint_error
117: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

113: When hr_api.unique_integrity_violated Then
114: -- Unique integrity has been violated
115: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
116: hxc_rtr_shd.constraint_error
117: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
118: When Others Then
119: hxc_rtr_shd.g_api_dml := false; -- Unset the api dml status
120: Raise;
121: End insert_dml;

Line 250: when hr_api.cannot_find_prog_unit then

246: );
247: --
248: exception
249: --
250: when hr_api.cannot_find_prog_unit then
251: --
252: hr_api.cannot_find_prog_unit_error
253: (p_module_name => 'HXC_RETRIEVAL_RULES'
254: ,p_hook_type => 'AI');

Line 252: hr_api.cannot_find_prog_unit_error

248: exception
249: --
250: when hr_api.cannot_find_prog_unit then
251: --
252: hr_api.cannot_find_prog_unit_error
253: (p_module_name => 'HXC_RETRIEVAL_RULES'
254: ,p_hook_type => 'AI');
255: --
256: end;