DBA Data[Home] [Help]

APPS.PER_EVT_INS dependencies on PER_EVENTS

Line 88: -- Insert the row into: per_events

84: p_rec.object_version_number := 1; -- Initialise the object version
85: --
86: per_evt_shd.g_api_dml := true; -- Set the api dml status
87: --
88: -- Insert the row into: per_events
89: --
90: insert into per_events
91: (event_id
92: ,business_group_id

Line 90: insert into per_events

86: per_evt_shd.g_api_dml := true; -- Set the api dml status
87: --
88: -- Insert the row into: per_events
89: --
90: insert into per_events
91: (event_id
92: ,business_group_id
93: ,location_id
94: ,internal_contact_person_id

Line 246: Cursor C_Sel1 is select per_events_s.nextval from sys.dual;

242: Procedure pre_insert
243: (p_rec in out nocopy per_evt_shd.g_rec_type
244: ) is
245: --
246: Cursor C_Sel1 is select per_events_s.nextval from sys.dual;
247: --
248: --
249: Cursor C_Sel2 is
250: Select null

Line 251: from per_events

247: --
248: --
249: Cursor C_Sel2 is
250: Select null
251: from per_events
252: where event_id =
253: per_evt_ins.g_event_id_i;
254: --
255: l_proc varchar2(72) := g_package||'pre_insert';

Line 273: fnd_message.set_name('TABLE_NAME','per_events');

269: --
270: -- The primary key values are already in use.
271: --
272: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
273: fnd_message.set_name('TABLE_NAME','per_events');
274: fnd_message.raise_error;
275: End If;
276: Close C_Sel2;
277: --

Line 434: (p_module_name => 'PER_EVENTS'

430: --
431: when hr_api.cannot_find_prog_unit then
432: --
433: hr_api.cannot_find_prog_unit_error
434: (p_module_name => 'PER_EVENTS'
435: ,p_hook_type => 'AI');
436: --
437: end;
438: --