DBA Data[Home] [Help]

APPS.HR_OPT_SHD dependencies on HR_KI_OPTIONS

Line 21: If (p_constraint_name = 'HR_KI_OPTIONS_PK') Then

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

Line 57: from hr_ki_options

53: ,value
54: ,encrypted
55: ,integration_id
56: ,object_version_number
57: from hr_ki_options
58: where option_id = p_option_id;
59: --
60: l_fct_ret boolean;
61: --

Line 130: from hr_ki_options

126: ,value
127: ,encrypted
128: ,integration_id
129: ,object_version_number
130: from hr_ki_options
131: where option_id = p_option_id
132: for update nowait;
133: --
134: l_proc varchar2(72) := g_package||'lck';

Line 179: fnd_message.set_token('TABLE_NAME', 'hr_ki_options');

175: -- The object is locked therefore we need to supply a meaningful
176: -- error message.
177: --
178: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
179: fnd_message.set_token('TABLE_NAME', 'hr_ki_options');
180: fnd_message.raise_error;
181: End lck;
182: --
183: -- ----------------------------------------------------------------------------