DBA Data[Home] [Help]

APPS.PER_SOL_INS dependencies on HR_API

Line 132: When hr_api.check_integrity_violated Then

128: --
129: --
130: hr_utility.set_location(' Leaving:'||l_proc, 10);
131: Exception
132: When hr_api.check_integrity_violated Then
133: -- A check constraint has been violated
134: --
135: per_sol_shd.constraint_error
136: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

132: When hr_api.check_integrity_violated Then
133: -- A check constraint has been violated
134: --
135: per_sol_shd.constraint_error
136: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
137: When hr_api.parent_integrity_violated Then
138: -- Parent integrity has been violated
139: --
140: per_sol_shd.constraint_error

Line 137: When hr_api.parent_integrity_violated Then

133: -- A check constraint has been violated
134: --
135: per_sol_shd.constraint_error
136: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
137: When hr_api.parent_integrity_violated Then
138: -- Parent integrity has been violated
139: --
140: per_sol_shd.constraint_error
141: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

137: When hr_api.parent_integrity_violated Then
138: -- Parent integrity has been violated
139: --
140: per_sol_shd.constraint_error
141: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
142: When hr_api.unique_integrity_violated Then
143: -- Unique integrity has been violated
144: --
145: per_sol_shd.constraint_error

Line 142: When hr_api.unique_integrity_violated Then

138: -- Parent integrity has been violated
139: --
140: per_sol_shd.constraint_error
141: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
142: When hr_api.unique_integrity_violated Then
143: -- Unique integrity has been violated
144: --
145: per_sol_shd.constraint_error
146: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

142: When hr_api.unique_integrity_violated Then
143: -- Unique integrity has been violated
144: --
145: per_sol_shd.constraint_error
146: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
147: When Others Then
148: --
149: Raise;
150: End insert_dml;

Line 311: when hr_api.cannot_find_prog_unit then

307: );
308: --
309: exception
310: --
311: when hr_api.cannot_find_prog_unit then
312: --
313: hr_api.cannot_find_prog_unit_error
314: (p_module_name => 'PER_SOLUTIONS'
315: ,p_hook_type => 'AI');

Line 313: hr_api.cannot_find_prog_unit_error

309: exception
310: --
311: when hr_api.cannot_find_prog_unit then
312: --
313: hr_api.cannot_find_prog_unit_error
314: (p_module_name => 'PER_SOLUTIONS'
315: ,p_hook_type => 'AI');
316: --
317: end;