DBA Data[Home] [Help]

APPS.HXC_LCK_SHD dependencies on HXC_LOCKER_TYPES

Line 23: If (p_constraint_name = 'HXC_LOCKER_TYPES_PK') Then

19: l_proc varchar2(72) := g_package||'constraint_error';
20: --
21: Begin
22: --
23: If (p_constraint_name = 'HXC_LOCKER_TYPES_PK') Then
24: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
25: fnd_message.set_token('PROCEDURE', l_proc);
26: fnd_message.set_token('STEP','5');
27: fnd_message.raise_error;

Line 53: from hxc_locker_types

49: select
50: locker_type_id
51: ,locker_type
52: ,process_type
53: from hxc_locker_types
54: where locker_type_id = p_locker_type_id;
55: --
56: l_fct_ret boolean;
57: --

Line 113: from hxc_locker_types

109: select
110: locker_type_id
111: ,locker_type
112: ,process_type
113: from hxc_locker_types
114: where locker_type_id = p_locker_type_id
115: for update nowait;
116: --
117: l_proc varchar2(72);

Line 159: fnd_message.set_token('TABLE_NAME', 'hxc_locker_types');

155: -- The object is locked therefore we need to supply a meaningful
156: -- error message.
157: --
158: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
159: fnd_message.set_token('TABLE_NAME', 'hxc_locker_types');
160: fnd_message.raise_error;
161: End lck;
162: --
163: -- ----------------------------------------------------------------------------