DBA Data[Home] [Help]

APPS.PQP_PCV_INS dependencies on PQP_CONFIGURATION_VALUES

Line 135: -- Insert the row into: pqp_configuration_values

131: p_rec.object_version_number := 1; -- Initialise the object version
132: --
133: --
134: --
135: -- Insert the row into: pqp_configuration_values
136: --
137: insert into pqp_configuration_values
138: (configuration_value_id
139: ,business_group_id

Line 137: insert into pqp_configuration_values

133: --
134: --
135: -- Insert the row into: pqp_configuration_values
136: --
137: insert into pqp_configuration_values
138: (configuration_value_id
139: ,business_group_id
140: ,legislation_code
141: ,pcv_attribute_category

Line 301: Cursor C_Sel1 is select pqp_configuration_values_s.nextval from sys.dual;

297: Procedure pre_insert
298: (p_rec in out nocopy pqp_pcv_shd.g_rec_type
299: ) is
300: --
301: Cursor C_Sel1 is select pqp_configuration_values_s.nextval from sys.dual;
302: --
303: Cursor C_Sel2 is
304: Select null
305: from pqp_configuration_values

Line 305: from pqp_configuration_values

301: Cursor C_Sel1 is select pqp_configuration_values_s.nextval from sys.dual;
302: --
303: Cursor C_Sel2 is
304: Select null
305: from pqp_configuration_values
306: where configuration_value_id =
307: pqp_pcv_ins.g_configuration_value_id_i;
308: --
309: l_proc varchar2(72) := g_package||'pre_insert';

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

323: --
324: -- The primary key values are already in use.
325: --
326: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
327: fnd_message.set_token('TABLE_NAME','pqp_configuration_values');
328: fnd_message.raise_error;
329: End If;
330: Close C_Sel2;
331: --

Line 504: (p_module_name => 'PQP_CONFIGURATION_VALUES'

500: --
501: when hr_api.cannot_find_prog_unit then
502: --
503: hr_api.cannot_find_prog_unit_error
504: (p_module_name => 'PQP_CONFIGURATION_VALUES'
505: ,p_hook_type => 'AI');
506: --
507: end;
508: --