DBA Data[Home] [Help]

APPS.HXC_APC_INS dependencies on HR_API

Line 102: When hr_api.check_integrity_violated Then

98: if g_debug then
99: hr_utility.set_location(' Leaving:'||l_proc, 10);
100: end if;
101: Exception
102: When hr_api.check_integrity_violated Then
103: -- A check constraint has been violated
104: hxc_apc_shd.g_api_dml := false; -- Unset the api dml status
105: hxc_apc_shd.constraint_error
106: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

102: When hr_api.check_integrity_violated Then
103: -- A check constraint has been violated
104: hxc_apc_shd.g_api_dml := false; -- Unset the api dml status
105: hxc_apc_shd.constraint_error
106: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
107: When hr_api.parent_integrity_violated Then
108: -- Parent integrity has been violated
109: hxc_apc_shd.g_api_dml := false; -- Unset the api dml status
110: hxc_apc_shd.constraint_error

Line 107: When hr_api.parent_integrity_violated Then

103: -- A check constraint has been violated
104: hxc_apc_shd.g_api_dml := false; -- Unset the api dml status
105: hxc_apc_shd.constraint_error
106: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
107: When hr_api.parent_integrity_violated Then
108: -- Parent integrity has been violated
109: hxc_apc_shd.g_api_dml := false; -- Unset the api dml status
110: hxc_apc_shd.constraint_error
111: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

107: When hr_api.parent_integrity_violated Then
108: -- Parent integrity has been violated
109: hxc_apc_shd.g_api_dml := false; -- Unset the api dml status
110: hxc_apc_shd.constraint_error
111: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
112: When hr_api.unique_integrity_violated Then
113: -- Unique integrity has been violated
114: hxc_apc_shd.g_api_dml := false; -- Unset the api dml status
115: hxc_apc_shd.constraint_error

Line 112: When hr_api.unique_integrity_violated Then

108: -- Parent integrity has been violated
109: hxc_apc_shd.g_api_dml := false; -- Unset the api dml status
110: hxc_apc_shd.constraint_error
111: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
112: When hr_api.unique_integrity_violated Then
113: -- Unique integrity has been violated
114: hxc_apc_shd.g_api_dml := false; -- Unset the api dml status
115: hxc_apc_shd.constraint_error
116: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

112: When hr_api.unique_integrity_violated Then
113: -- Unique integrity has been violated
114: hxc_apc_shd.g_api_dml := false; -- Unset the api dml status
115: hxc_apc_shd.constraint_error
116: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
117: When Others Then
118: hxc_apc_shd.g_api_dml := false; -- Unset the api dml status
119: Raise;
120: End insert_dml;

Line 249: when hr_api.cannot_find_prog_unit then

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

Line 251: hr_api.cannot_find_prog_unit_error

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