DBA Data[Home] [Help]

APPS.SSP_ERN_DEL dependencies on HR_API

Line 68: When hr_api.child_integrity_violated then

64: --
65: hr_utility.set_location('Leaving :'||l_proc, 100);
66: --
67: Exception
68: When hr_api.child_integrity_violated then
69: -- Child integrity has been violated
70: ssp_ern_shd.g_api_dml := false; -- Unset the api dml status
71: ssp_ern_shd.constraint_error
72: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

68: When hr_api.child_integrity_violated then
69: -- Child integrity has been violated
70: ssp_ern_shd.g_api_dml := false; -- Unset the api dml status
71: ssp_ern_shd.constraint_error
72: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
73: When Others Then
74: ssp_ern_shd.g_api_dml := false; -- Unset the api dml status
75: Raise;
76: End delete_dml;

Line 204: Raise HR_Api.Validate_Enabled;

200: --
201: -- If we are validating then raise the Validate_Enabled exception
202: --
203: If p_validate then
204: Raise HR_Api.Validate_Enabled;
205: End If;
206: --
207: hr_utility.set_location('Leaving :'||l_proc, 100);
208: Exception

Line 209: When HR_Api.Validate_Enabled Then

205: End If;
206: --
207: hr_utility.set_location('Leaving :'||l_proc, 100);
208: Exception
209: When HR_Api.Validate_Enabled Then
210: --
211: -- As the Validate_Enabled exception has been raised rollback to savepoint
212: --
213: ROLLBACK TO del_ssp_ern;