DBA Data[Home] [Help]

APPS.HXC_HTS_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_hts_shd.g_api_dml := false; -- Unset the api dml status
104: hxc_hts_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_hts_shd.g_api_dml := false; -- Unset the api dml status
104: hxc_hts_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_hts_shd.g_api_dml := false; -- Unset the api dml status
109: hxc_hts_shd.constraint_error

Line 106: When hr_api.parent_integrity_violated Then

102: -- A check constraint has been violated
103: hxc_hts_shd.g_api_dml := false; -- Unset the api dml status
104: hxc_hts_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_hts_shd.g_api_dml := false; -- Unset the api dml status
109: hxc_hts_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_hts_shd.g_api_dml := false; -- Unset the api dml status
109: hxc_hts_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_hts_shd.g_api_dml := false; -- Unset the api dml status
114: hxc_hts_shd.constraint_error

Line 111: When hr_api.unique_integrity_violated Then

107: -- Parent integrity has been violated
108: hxc_hts_shd.g_api_dml := false; -- Unset the api dml status
109: hxc_hts_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_hts_shd.g_api_dml := false; -- Unset the api dml status
114: hxc_hts_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_hts_shd.g_api_dml := false; -- Unset the api dml status
114: hxc_hts_shd.constraint_error
115: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
116: When Others Then
117: hxc_hts_shd.g_api_dml := false; -- Unset the api dml status
118: Raise;
119: End insert_dml;

Line 246: when hr_api.cannot_find_prog_unit then

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

Line 248: hr_api.cannot_find_prog_unit_error

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