DBA Data[Home] [Help]

APPS.PQH_BDT_INS dependencies on HR_API

Line 106: When hr_api.check_integrity_violated Then

102: --
103: --
104: hr_utility.set_location(' Leaving:'||l_proc, 10);
105: Exception
106: When hr_api.check_integrity_violated Then
107: -- A check constraint has been violated
108: pqh_bdt_shd.constraint_error
109: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
110: When hr_api.parent_integrity_violated Then

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

105: Exception
106: When hr_api.check_integrity_violated Then
107: -- A check constraint has been violated
108: pqh_bdt_shd.constraint_error
109: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
110: When hr_api.parent_integrity_violated Then
111: -- Parent integrity has been violated
112: pqh_bdt_shd.constraint_error
113: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 110: When hr_api.parent_integrity_violated Then

106: When hr_api.check_integrity_violated Then
107: -- A check constraint has been violated
108: pqh_bdt_shd.constraint_error
109: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
110: When hr_api.parent_integrity_violated Then
111: -- Parent integrity has been violated
112: pqh_bdt_shd.constraint_error
113: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
114: When hr_api.unique_integrity_violated Then

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

109: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
110: When hr_api.parent_integrity_violated Then
111: -- Parent integrity has been violated
112: pqh_bdt_shd.constraint_error
113: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
114: When hr_api.unique_integrity_violated Then
115: -- Unique integrity has been violated
116: pqh_bdt_shd.constraint_error
117: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 114: When hr_api.unique_integrity_violated Then

110: When hr_api.parent_integrity_violated Then
111: -- Parent integrity has been violated
112: pqh_bdt_shd.constraint_error
113: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
114: When hr_api.unique_integrity_violated Then
115: -- Unique integrity has been violated
116: pqh_bdt_shd.constraint_error
117: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
118: When Others Then

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

113: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
114: When hr_api.unique_integrity_violated Then
115: -- Unique integrity has been violated
116: pqh_bdt_shd.constraint_error
117: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
118: When Others Then
119: Raise;
120: End insert_dml;
121: --

Line 248: when hr_api.cannot_find_prog_unit then

244: );
245: --
246: exception
247: --
248: when hr_api.cannot_find_prog_unit then
249: --
250: hr_api.cannot_find_prog_unit_error
251: (p_module_name => 'pqh_budget_details'
252: ,p_hook_type => 'AI');

Line 250: hr_api.cannot_find_prog_unit_error

246: exception
247: --
248: when hr_api.cannot_find_prog_unit then
249: --
250: hr_api.cannot_find_prog_unit_error
251: (p_module_name => 'pqh_budget_details'
252: ,p_hook_type => 'AI');
253: --
254: end;