DBA Data[Home] [Help]

APPS.HXC_MAP_INS dependencies on HR_API

Line 101: When hr_api.check_integrity_violated Then

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

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

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

Line 106: When hr_api.parent_integrity_violated Then

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

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

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

Line 111: When hr_api.unique_integrity_violated Then

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

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

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

Line 244: when hr_api.cannot_find_prog_unit then

240: );
241: --
242: exception
243: --
244: when hr_api.cannot_find_prog_unit then
245: --
246: hr_api.cannot_find_prog_unit_error
247: (p_module_name => 'HXC_MAPPINGS'
248: ,p_hook_type => 'AI');

Line 246: hr_api.cannot_find_prog_unit_error

242: exception
243: --
244: when hr_api.cannot_find_prog_unit then
245: --
246: hr_api.cannot_find_prog_unit_error
247: (p_module_name => 'HXC_MAPPINGS'
248: ,p_hook_type => 'AI');
249: --
250: end;