DBA Data[Home] [Help]

APPS.HXC_LCK_INS dependencies on HXC_LCK_SHD

Line 85: (p_rec in out nocopy hxc_lck_shd.g_rec_type

81: --
82: -- {End Of Comments}
83: -- ----------------------------------------------------------------------------
84: Procedure insert_dml
85: (p_rec in out nocopy hxc_lck_shd.g_rec_type
86: ) is
87: --
88: l_proc varchar2(72);
89: --

Line 133: hxc_lck_shd.constraint_error

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

Line 138: hxc_lck_shd.constraint_error

134: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
135: When hr_api.parent_integrity_violated Then
136: -- Parent integrity has been violated
137: --
138: hxc_lck_shd.constraint_error
139: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
140: When hr_api.unique_integrity_violated Then
141: -- Unique integrity has been violated
142: --

Line 143: hxc_lck_shd.constraint_error

139: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
140: When hr_api.unique_integrity_violated Then
141: -- Unique integrity has been violated
142: --
143: hxc_lck_shd.constraint_error
144: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
145: When Others Then
146: --
147: Raise;

Line 188: (p_rec in out nocopy hxc_lck_shd.g_rec_type

184: --
185: -- {End Of Comments}
186: -- ----------------------------------------------------------------------------
187: Procedure pre_insert
188: (p_rec in out nocopy hxc_lck_shd.g_rec_type
189: ) is
190: --
191: Cursor C_Sel1 is select hxc_locker_types_s.nextval from sys.dual;
192: --

Line 282: (p_rec in hxc_lck_shd.g_rec_type

278: --
279: -- {End Of Comments}
280: -- ----------------------------------------------------------------------------
281: Procedure post_insert
282: (p_rec in hxc_lck_shd.g_rec_type
283: ) is
284: --
285: l_proc varchar2(72);
286: --

Line 324: (p_rec in out nocopy hxc_lck_shd.g_rec_type

320: -- ----------------------------------------------------------------------------
321: -- |---------------------------------< ins >----------------------------------|
322: -- ----------------------------------------------------------------------------
323: Procedure ins
324: (p_rec in out nocopy hxc_lck_shd.g_rec_type
325: ) is
326: --
327: l_proc varchar2(72);
328: --

Line 377: l_rec hxc_lck_shd.g_rec_type;

373: ,p_process_type in varchar2
374: ,p_locker_type_id out nocopy number
375: ) is
376: --
377: l_rec hxc_lck_shd.g_rec_type;
378: l_proc varchar2(72);
379: --
380: Begin
381: g_debug := hr_utility.debug_enabled;

Line 392: hxc_lck_shd.convert_args

388: -- Call conversion function to turn arguments into the
389: -- p_rec structure.
390: --
391: l_rec :=
392: hxc_lck_shd.convert_args
393: (null
394: ,p_locker_type
395: ,p_process_type
396: );