DBA Data[Home] [Help]

APPS.PER_PPS_INS dependencies on PER_PARENT_SPINES

Line 87: -- Insert the row into: per_parent_spines

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

Line 89: insert into per_parent_spines

85: per_pps_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: per_parent_spines
88: --
89: insert into per_parent_spines
90: (parent_spine_id
91: ,business_group_id
92: ,name
93: ,comments

Line 287: Cursor C_Sel1 is select per_parent_spines_s.nextval from sys.dual;

283: Procedure pre_insert
284: (p_rec in out nocopy per_pps_shd.g_rec_type
285: ) is
286: --
287: Cursor C_Sel1 is select per_parent_spines_s.nextval from sys.dual;
288: --
289: Cursor C_Sel2 is
290: Select null
291: from per_parent_spines

Line 291: from per_parent_spines

287: Cursor C_Sel1 is select per_parent_spines_s.nextval from sys.dual;
288: --
289: Cursor C_Sel2 is
290: Select null
291: from per_parent_spines
292: where parent_spine_id =
293: per_pps_ins.g_parent_spine_id_i;
294: --
295: l_proc varchar2(72) := g_package||'pre_insert';

Line 313: fnd_message.set_token('TABLE_NAME','per_parent_spines');

309: --
310: -- The primary key values are already in use.
311: --
312: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
313: fnd_message.set_token('TABLE_NAME','per_parent_spines');
314: fnd_message.raise_error;
315: End If;
316: Close C_Sel2;
317: --

Line 518: (p_module_name => 'PER_PARENT_SPINES'

514: --
515: when hr_api.cannot_find_prog_unit then
516: --
517: hr_api.cannot_find_prog_unit_error
518: (p_module_name => 'PER_PARENT_SPINES'
519: ,p_hook_type => 'AI');
520: --
521: end;
522: --