DBA Data[Home] [Help]

APPS.PER_CNF_SHD dependencies on PER_RI_CONFIGURATIONS

Line 53: from per_ri_configurations

49: configuration_code
50: ,configuration_type
51: ,configuration_status
52: ,object_version_number
53: from per_ri_configurations
54: where configuration_code = p_configuration_code;
55: --
56: l_fct_ret boolean;
57: --

Line 122: from per_ri_configurations

118: configuration_code
119: ,configuration_type
120: ,configuration_status
121: ,object_version_number
122: from per_ri_configurations
123: where configuration_code = p_configuration_code
124: for update nowait;
125: --
126: l_proc varchar2(72) := g_package||'lck';

Line 171: fnd_message.set_token('TABLE_NAME', 'per_ri_configurations');

167: -- The object is locked therefore we need to supply a meaningful
168: -- error message.
169: --
170: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
171: fnd_message.set_token('TABLE_NAME', 'per_ri_configurations');
172: fnd_message.raise_error;
173: End lck;
174: --
175: -- ----------------------------------------------------------------------------