DBA Data[Home] [Help]

APPS.PER_PSP_INS dependencies on PER_SPINAL_POINTS

Line 87: -- Insert the row into: per_spinal_points

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

Line 89: insert into per_spinal_points

85: per_psp_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: per_spinal_points
88: --
89: insert into per_spinal_points
90: (spinal_point_id
91: ,business_group_id
92: ,parent_spine_id
93: ,sequence

Line 241: Cursor C_Sel1 is select per_spinal_points_s.nextval from sys.dual;

237: Procedure pre_insert
238: (p_rec in out nocopy per_psp_shd.g_rec_type
239: ) is
240: --
241: Cursor C_Sel1 is select per_spinal_points_s.nextval from sys.dual;
242: --
243: Cursor C_Sel2 is
244: Select null
245: from per_spinal_points

Line 245: from per_spinal_points

241: Cursor C_Sel1 is select per_spinal_points_s.nextval from sys.dual;
242: --
243: Cursor C_Sel2 is
244: Select null
245: from per_spinal_points
246: where spinal_point_id =
247: per_psp_ins.g_spinal_point_id_i;
248: --
249: l_proc varchar2(72) := g_package||'pre_insert';

Line 267: fnd_message.set_token('TABLE_NAME','per_spinal_points');

263: --
264: -- The primary key values are already in use.
265: --
266: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
267: fnd_message.set_token('TABLE_NAME','per_spinal_points');
268: fnd_message.raise_error;
269: End If;
270: Close C_Sel2;
271: --

Line 426: (p_module_name => 'PER_SPINAL_POINTS'

422: --
423: when hr_api.cannot_find_prog_unit then
424: --
425: hr_api.cannot_find_prog_unit_error
426: (p_module_name => 'PER_SPINAL_POINTS'
427: ,p_hook_type => 'AI');
428: --
429: end;
430: --