DBA Data[Home] [Help]

APPS.BEN_RAN_INS dependencies on HR_API

Line 86: When hr_api.check_integrity_violated Then

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

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

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

Line 91: When hr_api.parent_integrity_violated Then

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

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

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

Line 96: When hr_api.unique_integrity_violated Then

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

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

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