DBA Data[Home] [Help]

APPS.PER_CKL_INS dependencies on PER_CHECKLISTS

Line 87: -- Insert the row into: per_checklists

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: --
86: --
87: -- Insert the row into: per_checklists
88: --
89: insert into per_checklists
90: (checklist_id
91: ,name

Line 89: insert into per_checklists

85: --
86: --
87: -- Insert the row into: per_checklists
88: --
89: insert into per_checklists
90: (checklist_id
91: ,name
92: ,description
93: ,checklist_category

Line 257: Cursor C_Sel1 is select per_checklists_s.nextval from sys.dual;

253: Procedure pre_insert
254: (p_rec in out nocopy per_ckl_shd.g_rec_type
255: ) is
256: --
257: Cursor C_Sel1 is select per_checklists_s.nextval from sys.dual;
258: --
259: Cursor C_Sel2 is
260: Select null
261: from per_checklists

Line 261: from per_checklists

257: Cursor C_Sel1 is select per_checklists_s.nextval from sys.dual;
258: --
259: Cursor C_Sel2 is
260: Select null
261: from per_checklists
262: where checklist_id =
263: per_ckl_ins.g_checklist_id_i;
264: --
265: l_proc varchar2(72) := g_package||'pre_insert';

Line 283: fnd_message.set_token('TABLE_NAME','per_checklists');

279: --
280: -- The primary key values are already in use.
281: --
282: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
283: fnd_message.set_token('TABLE_NAME','per_checklists');
284: fnd_message.raise_error;
285: End If;
286: Close C_Sel2;
287: --

Line 458: (p_module_name => 'PER_CHECKLISTS'

454: --
455: when hr_api.cannot_find_prog_unit then
456: --
457: hr_api.cannot_find_prog_unit_error
458: (p_module_name => 'PER_CHECKLISTS'
459: ,p_hook_type => 'AI');
460: --
461: end;
462: --