DBA Data[Home] [Help]

APPS.HR_ORI_INS dependencies on HR_API

Line 187: When hr_api.check_integrity_violated Then

183: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
184: --
185: hr_utility.set_location(' Leaving:'||l_proc, 10);
186: Exception
187: When hr_api.check_integrity_violated Then
188: -- A check constraint has been violated
189: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
190: hr_ori_shd.constraint_error
191: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

187: When hr_api.check_integrity_violated Then
188: -- A check constraint has been violated
189: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
190: hr_ori_shd.constraint_error
191: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
192: When hr_api.parent_integrity_violated Then
193: -- Parent integrity has been violated
194: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
195: hr_ori_shd.constraint_error

Line 192: When hr_api.parent_integrity_violated Then

188: -- A check constraint has been violated
189: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
190: hr_ori_shd.constraint_error
191: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
192: When hr_api.parent_integrity_violated Then
193: -- Parent integrity has been violated
194: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
195: hr_ori_shd.constraint_error
196: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

192: When hr_api.parent_integrity_violated Then
193: -- Parent integrity has been violated
194: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
195: hr_ori_shd.constraint_error
196: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
197: When hr_api.unique_integrity_violated Then
198: -- Unique integrity has been violated
199: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
200: hr_ori_shd.constraint_error

Line 197: When hr_api.unique_integrity_violated Then

193: -- Parent integrity has been violated
194: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
195: hr_ori_shd.constraint_error
196: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
197: When hr_api.unique_integrity_violated Then
198: -- Unique integrity has been violated
199: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
200: hr_ori_shd.constraint_error
201: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

197: When hr_api.unique_integrity_violated Then
198: -- Unique integrity has been violated
199: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
200: hr_ori_shd.constraint_error
201: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
202: When Others Then
203: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
204: Raise;
205: End insert_dml;

Line 404: when hr_api.cannot_find_prog_unit then

400: );
401: --
402: exception
403: --
404: when hr_api.cannot_find_prog_unit then
405: --
406: hr_api.cannot_find_prog_unit_error
407: (p_module_name => 'HR_ORGANIZATION_INFORMATION'
408: ,p_hook_type => 'AI');

Line 406: hr_api.cannot_find_prog_unit_error

402: exception
403: --
404: when hr_api.cannot_find_prog_unit then
405: --
406: hr_api.cannot_find_prog_unit_error
407: (p_module_name => 'HR_ORGANIZATION_INFORMATION'
408: ,p_hook_type => 'AI');
409: --
410: end;