DBA Data[Home] [Help]

APPS.HXC_HAT_UPD dependencies on HR_API

Line 93: When hr_api.check_integrity_violated Then

89: hr_utility.set_location(' Leaving:'||l_proc, 10);
90: end if;
91: --
92: Exception
93: When hr_api.check_integrity_violated Then
94: -- A check constraint has been violated
95: --
96: hxc_hat_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

93: When hr_api.check_integrity_violated Then
94: -- A check constraint has been violated
95: --
96: hxc_hat_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.parent_integrity_violated Then
99: -- Parent integrity has been violated
100: --
101: hxc_hat_shd.constraint_error

Line 98: When hr_api.parent_integrity_violated Then

94: -- A check constraint has been violated
95: --
96: hxc_hat_shd.constraint_error
97: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
98: When hr_api.parent_integrity_violated Then
99: -- Parent integrity has been violated
100: --
101: hxc_hat_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

98: When hr_api.parent_integrity_violated Then
99: -- Parent integrity has been violated
100: --
101: hxc_hat_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103: When hr_api.unique_integrity_violated Then
104: -- Unique integrity has been violated
105: --
106: hxc_hat_shd.constraint_error

Line 103: When hr_api.unique_integrity_violated Then

99: -- Parent integrity has been violated
100: --
101: hxc_hat_shd.constraint_error
102: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
103: When hr_api.unique_integrity_violated Then
104: -- Unique integrity has been violated
105: --
106: hxc_hat_shd.constraint_error
107: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

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

103: When hr_api.unique_integrity_violated Then
104: -- Unique integrity has been violated
105: --
106: hxc_hat_shd.constraint_error
107: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
108: When Others Then
109: --
110: Raise;
111: End update_dml;

Line 224: when hr_api.cannot_find_prog_unit then

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

Line 226: hr_api.cannot_find_prog_unit_error

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

Line 291: If (p_rec.alias_type = hr_api.g_varchar2) then

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

Line 295: If (p_rec.reference_object = hr_api.g_varchar2) then

291: If (p_rec.alias_type = hr_api.g_varchar2) then
292: p_rec.alias_type :=
293: hxc_hat_shd.g_old_rec.alias_type;
294: End If;
295: If (p_rec.reference_object = hr_api.g_varchar2) then
296: p_rec.reference_object :=
297: hxc_hat_shd.g_old_rec.reference_object;
298: End If;
299: --

Line 363: ,p_alias_type in varchar2 default hr_api.g_varchar2

359: -- ----------------------------------------------------------------------------
360: Procedure upd
361: (p_alias_type_id in number
362: ,p_object_version_number in out nocopy number
363: ,p_alias_type in varchar2 default hr_api.g_varchar2
364: ,p_reference_object in varchar2 default hr_api.g_varchar2
365: ) is
366: --
367: l_rec hxc_hat_shd.g_rec_type;

Line 364: ,p_reference_object in varchar2 default hr_api.g_varchar2

360: Procedure upd
361: (p_alias_type_id in number
362: ,p_object_version_number in out nocopy number
363: ,p_alias_type in varchar2 default hr_api.g_varchar2
364: ,p_reference_object in varchar2 default hr_api.g_varchar2
365: ) is
366: --
367: l_rec hxc_hat_shd.g_rec_type;
368: l_proc varchar2(72);