DBA Data[Home] [Help]

APPS.PQP_PVD_SHD dependencies on PQP_VEHICLE_DETAILS

Line 32: If (p_constraint_name = 'PQP_VEHICLE_DETAILS_PK') Then

28: l_proc varchar2(72) := g_package||'constraint_error';
29: --
30: Begin
31: --
32: If (p_constraint_name = 'PQP_VEHICLE_DETAILS_PK') Then
33: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
34: fnd_message.set_token('PROCEDURE', l_proc);
35: fnd_message.set_token('STEP','5');
36: fnd_message.raise_error;

Line 124: from pqp_vehicle_details

120: ,vhd_information17
121: ,vhd_information18
122: ,vhd_information19
123: ,vhd_information20
124: from pqp_vehicle_details
125: where vehicle_details_id = p_vehicle_details_id;
126: --
127: l_fct_ret boolean;
128: --

Line 253: from pqp_vehicle_details

249: ,vhd_information17
250: ,vhd_information18
251: ,vhd_information19
252: ,vhd_information20
253: from pqp_vehicle_details
254: where vehicle_details_id = p_vehicle_details_id
255: for update nowait;
256: --
257: l_proc varchar2(72) := g_package||'lck';

Line 296: fnd_message.set_token('TABLE_NAME', 'pqp_vehicle_details');

292: -- The object is locked therefore we need to supply a meaningful
293: -- error message.
294: --
295: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
296: fnd_message.set_token('TABLE_NAME', 'pqp_vehicle_details');
297: fnd_message.raise_error;
298: End lck;
299: --
300: -- ----------------------------------------------------------------------------