DBA Data[Home] [Help]

APPS.PER_CHK_INS dependencies on HR_API

Line 152: When hr_api.check_integrity_violated Then

148: per_chk_shd.g_api_dml := false; -- Unset the api dml status
149: --
150: hr_utility.set_location(' Leaving:'||l_proc, 10);
151: Exception
152: When hr_api.check_integrity_violated Then
153: -- A check constraint has been violated
154: per_chk_shd.g_api_dml := false; -- Unset the api dml status
155: per_chk_shd.constraint_error
156: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

152: When hr_api.check_integrity_violated Then
153: -- A check constraint has been violated
154: per_chk_shd.g_api_dml := false; -- Unset the api dml status
155: per_chk_shd.constraint_error
156: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
157: When hr_api.parent_integrity_violated Then
158: -- Parent integrity has been violated
159: per_chk_shd.g_api_dml := false; -- Unset the api dml status
160: per_chk_shd.constraint_error

Line 157: When hr_api.parent_integrity_violated Then

153: -- A check constraint has been violated
154: per_chk_shd.g_api_dml := false; -- Unset the api dml status
155: per_chk_shd.constraint_error
156: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
157: When hr_api.parent_integrity_violated Then
158: -- Parent integrity has been violated
159: per_chk_shd.g_api_dml := false; -- Unset the api dml status
160: per_chk_shd.constraint_error
161: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

157: When hr_api.parent_integrity_violated Then
158: -- Parent integrity has been violated
159: per_chk_shd.g_api_dml := false; -- Unset the api dml status
160: per_chk_shd.constraint_error
161: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
162: When hr_api.unique_integrity_violated Then
163: -- Unique integrity has been violated
164: per_chk_shd.g_api_dml := false; -- Unset the api dml status
165: per_chk_shd.constraint_error

Line 162: When hr_api.unique_integrity_violated Then

158: -- Parent integrity has been violated
159: per_chk_shd.g_api_dml := false; -- Unset the api dml status
160: per_chk_shd.constraint_error
161: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
162: When hr_api.unique_integrity_violated Then
163: -- Unique integrity has been violated
164: per_chk_shd.g_api_dml := false; -- Unset the api dml status
165: per_chk_shd.constraint_error
166: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

162: When hr_api.unique_integrity_violated Then
163: -- Unique integrity has been violated
164: per_chk_shd.g_api_dml := false; -- Unset the api dml status
165: per_chk_shd.constraint_error
166: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
167: When Others Then
168: per_chk_shd.g_api_dml := false; -- Unset the api dml status
169: Raise;
170: End insert_dml;

Line 319: when hr_api.cannot_find_prog_unit then

315: );
316: --
317: exception
318: --
319: when hr_api.cannot_find_prog_unit then
320: --
321: hr_api.cannot_find_prog_unit_error
322: (p_module_name => 'per_checklist_items'
323: ,p_hook_type => 'AI');

Line 321: hr_api.cannot_find_prog_unit_error

317: exception
318: --
319: when hr_api.cannot_find_prog_unit then
320: --
321: hr_api.cannot_find_prog_unit_error
322: (p_module_name => 'per_checklist_items'
323: ,p_hook_type => 'AI');
324: --
325: end;