DBA Data[Home] [Help]

APPS.BEN_ACT_INS dependencies on HR_API

Line 88: When hr_api.check_integrity_violated Then

84: ben_act_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: ben_act_shd.g_api_dml := false; -- Unset the api dml status
91: ben_act_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: ben_act_shd.g_api_dml := false; -- Unset the api dml status
91: ben_act_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: ben_act_shd.g_api_dml := false; -- Unset the api dml status
96: ben_act_shd.constraint_error

Line 93: When hr_api.parent_integrity_violated Then

89: -- A check constraint has been violated
90: ben_act_shd.g_api_dml := false; -- Unset the api dml status
91: ben_act_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: ben_act_shd.g_api_dml := false; -- Unset the api dml status
96: ben_act_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: ben_act_shd.g_api_dml := false; -- Unset the api dml status
96: ben_act_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: ben_act_shd.g_api_dml := false; -- Unset the api dml status
101: ben_act_shd.constraint_error

Line 98: When hr_api.unique_integrity_violated Then

94: -- Parent integrity has been violated
95: ben_act_shd.g_api_dml := false; -- Unset the api dml status
96: ben_act_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: ben_act_shd.g_api_dml := false; -- Unset the api dml status
101: ben_act_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: ben_act_shd.g_api_dml := false; -- Unset the api dml status
101: ben_act_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103: When Others Then
104: ben_act_shd.g_api_dml := false; -- Unset the api dml status
105: Raise;
106: End insert_dml;

Line 221: when hr_api.cannot_find_prog_unit then

217: ,p_effective_date => p_effective_date);
218: --
219: exception
220: --
221: when hr_api.cannot_find_prog_unit then
222: --
223: hr_api.cannot_find_prog_unit_error
224: (p_module_name => 'ben_person_actions'
225: ,p_hook_type => 'AI');

Line 223: hr_api.cannot_find_prog_unit_error

219: exception
220: --
221: when hr_api.cannot_find_prog_unit then
222: --
223: hr_api.cannot_find_prog_unit_error
224: (p_module_name => 'ben_person_actions'
225: ,p_hook_type => 'AI');
226: --
227: end;