DBA Data[Home] [Help]

APPS.PER_JBD_INS dependencies on HR_API

Line 142: When hr_api.check_integrity_violated Then

138: per_jbd_shd.g_api_dml := false; -- Unset the api dml status
139: --
140: hr_utility.set_location(' Leaving:'||l_proc, 10);
141: Exception
142: When hr_api.check_integrity_violated Then
143: -- A check constraint has been violated
144: per_jbd_shd.g_api_dml := false; -- Unset the api dml status
145: per_jbd_shd.constraint_error
146: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

142: When hr_api.check_integrity_violated Then
143: -- A check constraint has been violated
144: per_jbd_shd.g_api_dml := false; -- Unset the api dml status
145: per_jbd_shd.constraint_error
146: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
147: When hr_api.parent_integrity_violated Then
148: -- Parent integrity has been violated
149: per_jbd_shd.g_api_dml := false; -- Unset the api dml status
150: per_jbd_shd.constraint_error

Line 147: When hr_api.parent_integrity_violated Then

143: -- A check constraint has been violated
144: per_jbd_shd.g_api_dml := false; -- Unset the api dml status
145: per_jbd_shd.constraint_error
146: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
147: When hr_api.parent_integrity_violated Then
148: -- Parent integrity has been violated
149: per_jbd_shd.g_api_dml := false; -- Unset the api dml status
150: per_jbd_shd.constraint_error
151: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

147: When hr_api.parent_integrity_violated Then
148: -- Parent integrity has been violated
149: per_jbd_shd.g_api_dml := false; -- Unset the api dml status
150: per_jbd_shd.constraint_error
151: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
152: When hr_api.unique_integrity_violated Then
153: -- Unique integrity has been violated
154: per_jbd_shd.g_api_dml := false; -- Unset the api dml status
155: per_jbd_shd.constraint_error

Line 152: When hr_api.unique_integrity_violated Then

148: -- Parent integrity has been violated
149: per_jbd_shd.g_api_dml := false; -- Unset the api dml status
150: per_jbd_shd.constraint_error
151: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
152: When hr_api.unique_integrity_violated Then
153: -- Unique integrity has been violated
154: per_jbd_shd.g_api_dml := false; -- Unset the api dml status
155: per_jbd_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.unique_integrity_violated Then
153: -- Unique integrity has been violated
154: per_jbd_shd.g_api_dml := false; -- Unset the api dml status
155: per_jbd_shd.constraint_error
156: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
157: When Others Then
158: per_jbd_shd.g_api_dml := false; -- Unset the api dml status
159: Raise;
160: End insert_dml;

Line 303: Raise HR_Api.Validate_Enabled;

299: --
300: -- If we are validating then raise the Validate_Enabled exception
301: --
302: If p_validate then
303: Raise HR_Api.Validate_Enabled;
304: End If;
305: --
306: hr_utility.set_location(' Leaving:'||l_proc, 10);
307: Exception

Line 308: When HR_Api.Validate_Enabled Then

304: End If;
305: --
306: hr_utility.set_location(' Leaving:'||l_proc, 10);
307: Exception
308: When HR_Api.Validate_Enabled Then
309: --
310: -- As the Validate_Enabled exception has been raised
311: -- we must rollback to the savepoint
312: --