DBA Data[Home] [Help]

APPS.HR_CAU_INS dependencies on HR_API

Line 88: When hr_api.check_integrity_violated Then

84: hr_cau_shd.g_api_dml := false; -- Unset the api dml status
85: --
86: hr_utility.set_location(' Leaving:'||l_proc, 10);
87: Exception
88: When hr_api.check_integrity_violated Then
89: -- A check constraint has been violated
90: hr_cau_shd.g_api_dml := false; -- Unset the api dml status
91: hr_cau_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.check_integrity_violated Then
89: -- A check constraint has been violated
90: hr_cau_shd.g_api_dml := false; -- Unset the api dml status
91: hr_cau_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: hr_cau_shd.g_api_dml := false; -- Unset the api dml status
96: hr_cau_shd.constraint_error

Line 93: When hr_api.parent_integrity_violated Then

89: -- A check constraint has been violated
90: hr_cau_shd.g_api_dml := false; -- Unset the api dml status
91: hr_cau_shd.constraint_error
92: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
93: When hr_api.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: hr_cau_shd.g_api_dml := false; -- Unset the api dml status
96: hr_cau_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.parent_integrity_violated Then
94: -- Parent integrity has been violated
95: hr_cau_shd.g_api_dml := false; -- Unset the api dml status
96: hr_cau_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.unique_integrity_violated Then
99: -- Unique integrity has been violated
100: hr_cau_shd.g_api_dml := false; -- Unset the api dml status
101: hr_cau_shd.constraint_error

Line 98: When hr_api.unique_integrity_violated Then

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

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

98: When hr_api.unique_integrity_violated Then
99: -- Unique integrity has been violated
100: hr_cau_shd.g_api_dml := false; -- Unset the api dml status
101: hr_cau_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103: When Others Then
104: hr_cau_shd.g_api_dml := false; -- Unset the api dml status
105: Raise;
106: End insert_dml;

Line 248: Raise HR_Api.Validate_Enabled;

244: --
245: -- If we are validating then raise the Validate_Enabled exception
246: --
247: If p_validate then
248: Raise HR_Api.Validate_Enabled;
249: End If;
250: --
251: hr_utility.set_location(' Leaving:'||l_proc, 10);
252: Exception

Line 253: When HR_Api.Validate_Enabled Then

249: End If;
250: --
251: hr_utility.set_location(' Leaving:'||l_proc, 10);
252: Exception
253: When HR_Api.Validate_Enabled Then
254: --
255: -- As the Validate_Enabled exception has been raised
256: -- we must rollback to the savepoint
257: --