DBA Data[Home] [Help]

APPS.HR_PAT_INS dependencies on HR_API

Line 84: When hr_api.check_integrity_violated Then

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

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

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

Line 89: When hr_api.parent_integrity_violated Then

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

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

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

Line 94: When hr_api.unique_integrity_violated Then

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

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

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

Line 244: Raise HR_Api.Validate_Enabled;

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

Line 249: When HR_Api.Validate_Enabled Then

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