DBA Data[Home] [Help]

APPS.PQP_PCV_SHD dependencies on PQP_CONFIGURATION_VALUES

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

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'PQP_CONFIGURATION_VALUES_PK') Then
22: fnd_message.set_name('PAY', '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 96: from pqp_configuration_values

92: ,pcv_information19
93: ,pcv_information20
94: ,object_version_number
95: ,configuration_name
96: from pqp_configuration_values
97: where configuration_value_id = p_configuration_value_id;
98: --
99: l_fct_ret boolean;
100: --

Line 208: from pqp_configuration_values

204: ,pcv_information19
205: ,pcv_information20
206: ,object_version_number
207: ,configuration_name
208: from pqp_configuration_values
209: where configuration_value_id = p_configuration_value_id
210: for update nowait;
211: --
212: l_proc varchar2(72) := g_package||'lck';

Line 257: fnd_message.set_token('TABLE_NAME', 'pqp_configuration_values');

253: -- The object is locked therefore we need to supply a meaningful
254: -- error message.
255: --
256: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
257: fnd_message.set_token('TABLE_NAME', 'pqp_configuration_values');
258: fnd_message.raise_error;
259: End lck;
260: --
261: -- ----------------------------------------------------------------------------