DBA Data[Home] [Help]

APPS.HR_PPU_INS dependencies on HR_API

Line 84: When hr_api.check_integrity_violated Then

80: hr_ppu_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_ppu_shd.g_api_dml := false; -- Unset the api dml status
87: hr_ppu_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_ppu_shd.g_api_dml := false; -- Unset the api dml status
87: hr_ppu_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_ppu_shd.g_api_dml := false; -- Unset the api dml status
92: hr_ppu_shd.constraint_error

Line 89: When hr_api.parent_integrity_violated Then

85: -- A check constraint has been violated
86: hr_ppu_shd.g_api_dml := false; -- Unset the api dml status
87: hr_ppu_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_ppu_shd.g_api_dml := false; -- Unset the api dml status
92: hr_ppu_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_ppu_shd.g_api_dml := false; -- Unset the api dml status
92: hr_ppu_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_ppu_shd.g_api_dml := false; -- Unset the api dml status
97: hr_ppu_shd.constraint_error

Line 94: When hr_api.unique_integrity_violated Then

90: -- Parent integrity has been violated
91: hr_ppu_shd.g_api_dml := false; -- Unset the api dml status
92: hr_ppu_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_ppu_shd.g_api_dml := false; -- Unset the api dml status
97: hr_ppu_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_ppu_shd.g_api_dml := false; -- Unset the api dml status
97: hr_ppu_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
99: When Others Then
100: hr_ppu_shd.g_api_dml := false; -- Unset the api dml status
101: Raise;
102: End insert_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: --