DBA Data[Home] [Help]

APPS.HXC_LCK_UPD dependencies on HR_API

Line 92: When hr_api.check_integrity_violated Then

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

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

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

Line 97: When hr_api.parent_integrity_violated Then

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

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

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

Line 102: When hr_api.unique_integrity_violated Then

98: -- Parent integrity has been violated
99: --
100: hxc_lck_shd.constraint_error
101: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
102: When hr_api.unique_integrity_violated Then
103: -- Unique integrity has been violated
104: --
105: hxc_lck_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.unique_integrity_violated Then
103: -- Unique integrity has been violated
104: --
105: hxc_lck_shd.constraint_error
106: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
107: When Others Then
108: --
109: Raise;
110: 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_LOCKER_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_LOCKER_TYPES'
228: ,p_hook_type => 'AU');
229: --
230: end;

Line 291: If (p_rec.locker_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.locker_type = hr_api.g_varchar2) then
292: p_rec.locker_type :=
293: hxc_lck_shd.g_old_rec.locker_type;
294: End If;
295: If (p_rec.process_type = hr_api.g_varchar2) then

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

291: If (p_rec.locker_type = hr_api.g_varchar2) then
292: p_rec.locker_type :=
293: hxc_lck_shd.g_old_rec.locker_type;
294: End If;
295: If (p_rec.process_type = hr_api.g_varchar2) then
296: p_rec.process_type :=
297: hxc_lck_shd.g_old_rec.process_type;
298: End If;
299: --

Line 362: ,p_locker_type in varchar2 default hr_api.g_varchar2

358: -- |---------------------------------< upd >----------------------------------|
359: -- ----------------------------------------------------------------------------
360: Procedure upd
361: (p_locker_type_id in number
362: ,p_locker_type in varchar2 default hr_api.g_varchar2
363: ,p_process_type in varchar2 default hr_api.g_varchar2
364: ) is
365: --
366: l_rec hxc_lck_shd.g_rec_type;

Line 363: ,p_process_type in varchar2 default hr_api.g_varchar2

359: -- ----------------------------------------------------------------------------
360: Procedure upd
361: (p_locker_type_id in number
362: ,p_locker_type in varchar2 default hr_api.g_varchar2
363: ,p_process_type in varchar2 default hr_api.g_varchar2
364: ) is
365: --
366: l_rec hxc_lck_shd.g_rec_type;
367: l_proc varchar2(72);