DBA Data[Home] [Help]

APPS.PER_ZA_TRA_UPD dependencies on HR_API

Line 87: When hr_api.check_integrity_violated Then

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

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

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

Line 92: When hr_api.parent_integrity_violated Then

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

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

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

Line 97: When hr_api.unique_integrity_violated Then

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

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

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

Line 246: Raise HR_Api.Validate_Enabled;

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

Line 251: When HR_Api.Validate_Enabled Then

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