DBA Data[Home] [Help]

APPS.HXC_ERR_INS dependencies on HR_API

Line 138: When hr_api.check_integrity_violated Then

134: if g_debug then
135: hr_utility.set_location(' Leaving:'||l_proc, 10);
136: end if;
137: Exception
138: When hr_api.check_integrity_violated Then
139: -- A check constraint has been violated
140: --
141: hxc_err_shd.constraint_error
142: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

138: When hr_api.check_integrity_violated Then
139: -- A check constraint has been violated
140: --
141: hxc_err_shd.constraint_error
142: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
143: When hr_api.parent_integrity_violated Then
144: -- Parent integrity has been violated
145: --
146: hxc_err_shd.constraint_error

Line 143: When hr_api.parent_integrity_violated Then

139: -- A check constraint has been violated
140: --
141: hxc_err_shd.constraint_error
142: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
143: When hr_api.parent_integrity_violated Then
144: -- Parent integrity has been violated
145: --
146: hxc_err_shd.constraint_error
147: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

143: When hr_api.parent_integrity_violated Then
144: -- Parent integrity has been violated
145: --
146: hxc_err_shd.constraint_error
147: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
148: When hr_api.unique_integrity_violated Then
149: -- Unique integrity has been violated
150: --
151: hxc_err_shd.constraint_error

Line 148: When hr_api.unique_integrity_violated Then

144: -- Parent integrity has been violated
145: --
146: hxc_err_shd.constraint_error
147: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
148: When hr_api.unique_integrity_violated Then
149: -- Unique integrity has been violated
150: --
151: hxc_err_shd.constraint_error
152: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

148: When hr_api.unique_integrity_violated Then
149: -- Unique integrity has been violated
150: --
151: hxc_err_shd.constraint_error
152: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
153: When Others Then
154: --
155: Raise;
156: End insert_dml;

Line 332: when hr_api.cannot_find_prog_unit then

328:
329: --
330: exception
331: --
332: when hr_api.cannot_find_prog_unit then
333: --
334: hr_api.cannot_find_prog_unit_error
335: (p_module_name => 'HXC_ERRORS'
336: ,p_hook_type => 'AI');

Line 334: hr_api.cannot_find_prog_unit_error

330: exception
331: --
332: when hr_api.cannot_find_prog_unit then
333: --
334: hr_api.cannot_find_prog_unit_error
335: (p_module_name => 'HXC_ERRORS'
336: ,p_hook_type => 'AI');
337: --
338: end;