DBA Data[Home] [Help]

APPS.PER_SIP_INS dependencies on PER_SP_SUCCESSOR_IN_PLAN

Line 87: -- Insert the row into: per_sp_successor_in_plan

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: per_sip_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: per_sp_successor_in_plan
88: --
89: insert into per_sp_successor_in_plan
90: (successor_in_plan_id
91: ,plan_id

Line 89: insert into per_sp_successor_in_plan

85: per_sip_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: per_sp_successor_in_plan
88: --
89: insert into per_sp_successor_in_plan
90: (successor_in_plan_id
91: ,plan_id
92: ,successor_id
93: ,business_group_id

Line 273: Cursor C_Sel1 is select per_sp_successor_in_plan_s.nextval from sys.dual;

269: Procedure pre_insert
270: (p_rec in out nocopy per_sip_shd.g_rec_type
271: ) is
272: --
273: Cursor C_Sel1 is select per_sp_successor_in_plan_s.nextval from sys.dual;
274: --
275: Cursor C_Sel2 is
276: Select null
277: from per_sp_successor_in_plan

Line 277: from per_sp_successor_in_plan

273: Cursor C_Sel1 is select per_sp_successor_in_plan_s.nextval from sys.dual;
274: --
275: Cursor C_Sel2 is
276: Select null
277: from per_sp_successor_in_plan
278: where successor_in_plan_id =
279: per_sip_ins.g_successor_in_plan_id_i;
280: --
281: l_proc varchar2(72) := g_package||'pre_insert';

Line 299: fnd_message.set_token('TABLE_NAME','per_sp_successor_in_plan');

295: --
296: -- The primary key values are already in use.
297: --
298: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
299: fnd_message.set_token('TABLE_NAME','per_sp_successor_in_plan');
300: fnd_message.raise_error;
301: End If;
302: Close C_Sel2;
303: --

Line 490: (p_module_name => 'PER_SP_SUCCESSOR_IN_PLAN'

486: --
487: when hr_api.cannot_find_prog_unit then
488: --
489: hr_api.cannot_find_prog_unit_error
490: (p_module_name => 'PER_SP_SUCCESSOR_IN_PLAN'
491: ,p_hook_type => 'AI');
492: --
493: end;
494: --