DBA Data[Home] [Help]

APPS.PER_ZA_QUA_UPD dependencies on HR_API

Line 83: When hr_api.check_integrity_violated Then

79: --
80: hr_utility.set_location(' Leaving:'||l_proc, 10);
81: --
82: Exception
83: When hr_api.check_integrity_violated Then
84: -- A check constraint has been violated
85: per_qua_shd.g_api_dml := false; -- Unset the api dml status
86: per_qua_shd.constraint_error
87: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

83: When hr_api.check_integrity_violated Then
84: -- A check constraint has been violated
85: per_qua_shd.g_api_dml := false; -- Unset the api dml status
86: per_qua_shd.constraint_error
87: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
88: When hr_api.parent_integrity_violated Then
89: -- Parent integrity has been violated
90: per_qua_shd.g_api_dml := false; -- Unset the api dml status
91: per_qua_shd.constraint_error

Line 88: When hr_api.parent_integrity_violated Then

84: -- A check constraint has been violated
85: per_qua_shd.g_api_dml := false; -- Unset the api dml status
86: per_qua_shd.constraint_error
87: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
88: When hr_api.parent_integrity_violated Then
89: -- Parent integrity has been violated
90: per_qua_shd.g_api_dml := false; -- Unset the api dml status
91: per_qua_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

88: When hr_api.parent_integrity_violated Then
89: -- Parent integrity has been violated
90: per_qua_shd.g_api_dml := false; -- Unset the api dml status
91: per_qua_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.unique_integrity_violated Then
94: -- Unique integrity has been violated
95: per_qua_shd.g_api_dml := false; -- Unset the api dml status
96: per_qua_shd.constraint_error

Line 93: When hr_api.unique_integrity_violated Then

89: -- Parent integrity has been violated
90: per_qua_shd.g_api_dml := false; -- Unset the api dml status
91: per_qua_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.unique_integrity_violated Then
94: -- Unique integrity has been violated
95: per_qua_shd.g_api_dml := false; -- Unset the api dml status
96: per_qua_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

93: When hr_api.unique_integrity_violated Then
94: -- Unique integrity has been violated
95: per_qua_shd.g_api_dml := false; -- Unset the api dml status
96: per_qua_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When Others Then
99: per_qua_shd.g_api_dml := false; -- Unset the api dml status
100: Raise;
101: End update_dml;

Line 241: Raise HR_Api.Validate_Enabled;

237: --
238: -- If we are validating then raise the Validate_Enabled exception
239: --
240: If p_validate then
241: Raise HR_Api.Validate_Enabled;
242: End If;
243: --
244: hr_utility.set_location(' Leaving:'||l_proc, 10);
245: Exception

Line 246: When HR_Api.Validate_Enabled Then

242: End If;
243: --
244: hr_utility.set_location(' Leaving:'||l_proc, 10);
245: Exception
246: When HR_Api.Validate_Enabled Then
247: --
248: -- As the Validate_Enabled exception has been raised
249: -- we must rollback to the savepoint
250: --