DBA Data[Home] [Help]

APPS.HXC_LCK_UPD dependencies on HXC_LCK_SHD

Line 57: (p_rec in out nocopy hxc_lck_shd.g_rec_type

53: --
54: -- {End Of Comments}
55: -- ----------------------------------------------------------------------------
56: Procedure update_dml
57: (p_rec in out nocopy hxc_lck_shd.g_rec_type
58: ) is
59: --
60: l_proc varchar2(72);
61: --

Line 95: hxc_lck_shd.constraint_error

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));
97: When hr_api.parent_integrity_violated Then
98: -- Parent integrity has been violated
99: --

Line 100: 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));
102: When hr_api.unique_integrity_violated Then
103: -- Unique integrity has been violated
104: --

Line 105: 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));
107: When Others Then
108: --
109: Raise;

Line 145: (p_rec in hxc_lck_shd.g_rec_type

141: --
142: -- {End Of Comments}
143: -- ----------------------------------------------------------------------------
144: Procedure pre_update
145: (p_rec in hxc_lck_shd.g_rec_type
146: ) is
147: --
148: l_proc varchar2(72);
149: --

Line 194: (p_rec in hxc_lck_shd.g_rec_type

190: --
191: -- {End Of Comments}
192: -- ----------------------------------------------------------------------------
193: Procedure post_update
194: (p_rec in hxc_lck_shd.g_rec_type
195: ) is
196: --
197: l_proc varchar2(72);
198: --

Line 216: => hxc_lck_shd.g_old_rec.locker_type

212: => p_rec.locker_type
213: ,p_process_type
214: => p_rec.process_type
215: ,p_locker_type_o
216: => hxc_lck_shd.g_old_rec.locker_type
217: ,p_process_type_o
218: => hxc_lck_shd.g_old_rec.process_type
219: );
220:

Line 218: => hxc_lck_shd.g_old_rec.process_type

214: => p_rec.process_type
215: ,p_locker_type_o
216: => hxc_lck_shd.g_old_rec.locker_type
217: ,p_process_type_o
218: => hxc_lck_shd.g_old_rec.process_type
219: );
220:
221: --
222: exception

Line 281: (p_rec in out nocopy hxc_lck_shd.g_rec_type

277: --
278: -- {End Of Comments}
279: -- ----------------------------------------------------------------------------
280: Procedure convert_defs
281: (p_rec in out nocopy hxc_lck_shd.g_rec_type
282: ) is
283: --
284: Begin
285: --

Line 293: hxc_lck_shd.g_old_rec.locker_type;

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
296: p_rec.process_type :=
297: hxc_lck_shd.g_old_rec.process_type;

Line 297: hxc_lck_shd.g_old_rec.process_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: --
300: End convert_defs;
301: --

Line 306: (p_rec in out nocopy hxc_lck_shd.g_rec_type

302: -- ----------------------------------------------------------------------------
303: -- |---------------------------------< upd >----------------------------------|
304: -- ----------------------------------------------------------------------------
305: Procedure upd
306: (p_rec in out nocopy hxc_lck_shd.g_rec_type
307: ) is
308: --
309: l_proc varchar2(72);
310: --

Line 321: hxc_lck_shd.lck

317: end if;
318: --
319: -- We must lock the row which we need to update.
320: --
321: hxc_lck_shd.lck
322: (p_rec.locker_type_id
323: );
324: --
325: -- 1. During an update system defaults are used to determine if

Line 366: l_rec hxc_lck_shd.g_rec_type;

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);
368: --
369: Begin
370: g_debug := hr_utility.debug_enabled;

Line 381: hxc_lck_shd.convert_args

377: -- Call conversion function to turn arguments into the
378: -- l_rec structure.
379: --
380: l_rec :=
381: hxc_lck_shd.convert_args
382: (p_locker_type_id
383: ,p_locker_type
384: ,p_process_type
385: );