DBA Data[Home] [Help]

APPS.HXC_LKR_INS dependencies on HXC_LKR_SHD

Line 88: (p_rec in out nocopy hxc_lkr_shd.g_rec_type

84: --
85: -- {End Of Comments}
86: -- ----------------------------------------------------------------------------
87: Procedure insert_dml
88: (p_rec in out nocopy hxc_lkr_shd.g_rec_type
89: ) is
90: --
91: l_proc varchar2(72);
92: --

Line 136: hxc_lkr_shd.constraint_error

132: Exception
133: When hr_api.check_integrity_violated Then
134: -- A check constraint has been violated
135: --
136: hxc_lkr_shd.constraint_error
137: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
138: When hr_api.parent_integrity_violated Then
139: -- Parent integrity has been violated
140: --

Line 141: hxc_lkr_shd.constraint_error

137: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
138: When hr_api.parent_integrity_violated Then
139: -- Parent integrity has been violated
140: --
141: hxc_lkr_shd.constraint_error
142: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
143: When hr_api.unique_integrity_violated Then
144: -- Unique integrity has been violated
145: --

Line 146: hxc_lkr_shd.constraint_error

142: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
143: When hr_api.unique_integrity_violated Then
144: -- Unique integrity has been violated
145: --
146: hxc_lkr_shd.constraint_error
147: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
148: When Others Then
149: --
150: Raise;

Line 191: (p_rec in out nocopy hxc_lkr_shd.g_rec_type

187: --
188: -- {End Of Comments}
189: -- ----------------------------------------------------------------------------
190: Procedure pre_insert
191: (p_rec in out nocopy hxc_lkr_shd.g_rec_type
192: ) is
193: --
194: Cursor C_Sel1 is select hxc_locking_rules_s.nextval from sys.dual;
195: --

Line 294: (p_rec in hxc_lkr_shd.g_rec_type

290: --
291: -- {End Of Comments}
292: -- ----------------------------------------------------------------------------
293: Procedure post_insert
294: (p_rec in hxc_lkr_shd.g_rec_type
295: ) is
296: --
297: l_proc varchar2(72);
298: --

Line 338: (p_rec in out nocopy hxc_lkr_shd.g_rec_type

334: -- ----------------------------------------------------------------------------
335: -- |---------------------------------< ins >----------------------------------|
336: -- ----------------------------------------------------------------------------
337: Procedure ins
338: (p_rec in out nocopy hxc_lkr_shd.g_rec_type
339: ) is
340: --
341: l_proc varchar2(72);
342: --

Line 391: l_rec hxc_lkr_shd.g_rec_type;

387: ,p_locker_type_owner_id in out nocopy number
388: ,p_locker_type_requestor_id in out nocopy number
389: ) is
390: --
391: l_rec hxc_lkr_shd.g_rec_type;
392: l_proc varchar2(72);
393: --
394: Begin
395: g_debug := hr_utility.debug_enabled;

Line 406: hxc_lkr_shd.convert_args

402: -- Call conversion function to turn arguments into the
403: -- p_rec structure.
404: --
405: l_rec :=
406: hxc_lkr_shd.convert_args
407: (p_locker_type_owner_id
408: ,p_locker_type_requestor_id
409: ,p_grant_lock
410: );