DBA Data[Home] [Help]

APPS.PQH_RST_INS dependencies on HR_API

Line 94: When hr_api.check_integrity_violated Then

90: --
91: --
92: hr_utility.set_location(' Leaving:'||l_proc, 10);
93: Exception
94: When hr_api.check_integrity_violated Then
95: -- A check constraint has been violated
96: pqh_rst_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.parent_integrity_violated Then

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

93: Exception
94: When hr_api.check_integrity_violated Then
95: -- A check constraint has been violated
96: pqh_rst_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.parent_integrity_violated Then
99: -- Parent integrity has been violated
100: pqh_rst_shd.constraint_error
101: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 98: When hr_api.parent_integrity_violated Then

94: When hr_api.check_integrity_violated Then
95: -- A check constraint has been violated
96: pqh_rst_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.parent_integrity_violated Then
99: -- Parent integrity has been violated
100: pqh_rst_shd.constraint_error
101: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
102: When hr_api.unique_integrity_violated Then

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

97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.parent_integrity_violated Then
99: -- Parent integrity has been violated
100: pqh_rst_shd.constraint_error
101: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
102: When hr_api.unique_integrity_violated Then
103: -- Unique integrity has been violated
104: pqh_rst_shd.constraint_error
105: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 102: When hr_api.unique_integrity_violated Then

98: When hr_api.parent_integrity_violated Then
99: -- Parent integrity has been violated
100: pqh_rst_shd.constraint_error
101: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
102: When hr_api.unique_integrity_violated Then
103: -- Unique integrity has been violated
104: pqh_rst_shd.constraint_error
105: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
106: When Others Then

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

101: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
102: When hr_api.unique_integrity_violated Then
103: -- Unique integrity has been violated
104: pqh_rst_shd.constraint_error
105: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
106: When Others Then
107: Raise;
108: End insert_dml;
109: --

Line 231: when hr_api.cannot_find_prog_unit then

227: );
228: --
229: exception
230: --
231: when hr_api.cannot_find_prog_unit then
232: --
233: hr_api.cannot_find_prog_unit_error
234: (p_module_name => 'pqh_rule_sets'
235: ,p_hook_type => 'AI');

Line 233: hr_api.cannot_find_prog_unit_error

229: exception
230: --
231: when hr_api.cannot_find_prog_unit then
232: --
233: hr_api.cannot_find_prog_unit_error
234: (p_module_name => 'pqh_rule_sets'
235: ,p_hook_type => 'AI');
236: --
237: end;