DBA Data[Home] [Help]

APPS.PER_SPH_INS dependencies on PER_SP_PLAN

Line 87: -- Insert the row into: per_sp_plan

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

Line 89: insert into per_sp_plan

85: per_sph_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: per_sp_plan
88: --
89: insert into per_sp_plan
90: (plan_id
91: ,plan_type
92: ,plan_name
93: ,successee_id

Line 233: Cursor C_Sel1 is select per_sp_plan_s.nextval from sys.dual;

229: Procedure pre_insert
230: (p_rec in out nocopy per_sph_shd.g_rec_type
231: ) is
232: --
233: Cursor C_Sel1 is select per_sp_plan_s.nextval from sys.dual;
234: --
235: Cursor C_Sel2 is
236: Select null
237: from per_sp_plan

Line 237: from per_sp_plan

233: Cursor C_Sel1 is select per_sp_plan_s.nextval from sys.dual;
234: --
235: Cursor C_Sel2 is
236: Select null
237: from per_sp_plan
238: where plan_id =
239: per_sph_ins.g_plan_id_i;
240: --
241: l_proc varchar2(72) := g_package||'pre_insert';

Line 259: fnd_message.set_token('TABLE_NAME','per_sp_plan');

255: --
256: -- The primary key values are already in use.
257: --
258: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
259: fnd_message.set_token('TABLE_NAME','per_sp_plan');
260: fnd_message.raise_error;
261: End If;
262: Close C_Sel2;
263: --

Line 410: (p_module_name => 'PER_SP_PLAN'

406: --
407: when hr_api.cannot_find_prog_unit then
408: --
409: hr_api.cannot_find_prog_unit_error
410: (p_module_name => 'PER_SP_PLAN'
411: ,p_hook_type => 'AI');
412: --
413: end;
414: --