DBA Data[Home] [Help]

APPS.HXC_MAP_UPD dependencies on HR_API

Line 94: When hr_api.check_integrity_violated Then

90: hr_utility.set_location(' Leaving:'||l_proc, 10);
91: end if;
92: --
93: Exception
94: When hr_api.check_integrity_violated Then
95: -- A check constraint has been violated
96: hxc_map_shd.g_api_dml := false; -- Unset the api dml status
97: hxc_map_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

94: When hr_api.check_integrity_violated Then
95: -- A check constraint has been violated
96: hxc_map_shd.g_api_dml := false; -- Unset the api dml status
97: hxc_map_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
99: When hr_api.parent_integrity_violated Then
100: -- Parent integrity has been violated
101: hxc_map_shd.g_api_dml := false; -- Unset the api dml status
102: hxc_map_shd.constraint_error

Line 99: When hr_api.parent_integrity_violated Then

95: -- A check constraint has been violated
96: hxc_map_shd.g_api_dml := false; -- Unset the api dml status
97: hxc_map_shd.constraint_error
98: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
99: When hr_api.parent_integrity_violated Then
100: -- Parent integrity has been violated
101: hxc_map_shd.g_api_dml := false; -- Unset the api dml status
102: hxc_map_shd.constraint_error
103: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

99: When hr_api.parent_integrity_violated Then
100: -- Parent integrity has been violated
101: hxc_map_shd.g_api_dml := false; -- Unset the api dml status
102: hxc_map_shd.constraint_error
103: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
104: When hr_api.unique_integrity_violated Then
105: -- Unique integrity has been violated
106: hxc_map_shd.g_api_dml := false; -- Unset the api dml status
107: hxc_map_shd.constraint_error

Line 104: When hr_api.unique_integrity_violated Then

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

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

104: When hr_api.unique_integrity_violated Then
105: -- Unique integrity has been violated
106: hxc_map_shd.g_api_dml := false; -- Unset the api dml status
107: hxc_map_shd.constraint_error
108: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
109: When Others Then
110: hxc_map_shd.g_api_dml := false; -- Unset the api dml status
111: Raise;
112: End update_dml;

Line 225: when hr_api.cannot_find_prog_unit then

221: );
222: --
223: exception
224: --
225: when hr_api.cannot_find_prog_unit then
226: --
227: hr_api.cannot_find_prog_unit_error
228: (p_module_name => 'HXC_MAPPINGS'
229: ,p_hook_type => 'AU');

Line 227: hr_api.cannot_find_prog_unit_error

223: exception
224: --
225: when hr_api.cannot_find_prog_unit then
226: --
227: hr_api.cannot_find_prog_unit_error
228: (p_module_name => 'HXC_MAPPINGS'
229: ,p_hook_type => 'AU');
230: --
231: end;

Line 292: If (p_rec.name = hr_api.g_varchar2) then

288: -- p_rec plsql record structure
289: -- to see if a system default is being used. If a system default
290: -- is being used then we must set to the 'current' argument value.
291: --
292: If (p_rec.name = hr_api.g_varchar2) then
293: p_rec.name :=
294: hxc_map_shd.g_old_rec.name;
295: End If;
296: --

Line 355: ,p_name in varchar2 default hr_api.g_varchar2

351: -- ----------------------------------------------------------------------------
352: Procedure upd
353: (p_mapping_id in number
354: ,p_object_version_number in out nocopy number
355: ,p_name in varchar2 default hr_api.g_varchar2
356: ) is
357: --
358: l_rec hxc_map_shd.g_rec_type;
359: l_proc varchar2(72);