DBA Data[Home] [Help]

APPS.PER_REQ_INS dependencies on PER_REQUISITIONS

Line 87: -- Insert the row into: per_requisitions

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

Line 89: insert into per_requisitions

85: --
86: --
87: -- Insert the row into: per_requisitions
88: --
89: insert into per_requisitions
90: (requisition_id
91: ,business_group_id
92: ,person_id
93: ,date_from

Line 227: Cursor C_Sel1 is select per_requisitions_s.nextval from sys.dual;

223: Procedure pre_insert
224: (p_rec in out nocopy per_req_shd.g_rec_type
225: ) is
226: --
227: Cursor C_Sel1 is select per_requisitions_s.nextval from sys.dual;
228: --
229: Cursor C_Sel2 is
230: Select null
231: from per_requisitions

Line 231: from per_requisitions

227: Cursor C_Sel1 is select per_requisitions_s.nextval from sys.dual;
228: --
229: Cursor C_Sel2 is
230: Select null
231: from per_requisitions
232: where requisition_id =
233: per_req_ins.g_requisition_id_i;
234: --
235: l_proc varchar2(72) := g_package||'pre_insert';

Line 253: fnd_message.set_name('TABLE_NAME','per_requisitions');

249: --
250: -- The primary key values are already in use.
251: --
252: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
253: fnd_message.set_name('TABLE_NAME','per_requisitions');
254: fnd_message.raise_error;
255: End If;
256: Close C_Sel2;
257: --

Line 396: (p_module_name => 'PER_REQUISITIONS'

392: --
393: when hr_api.cannot_find_prog_unit then
394: --
395: hr_api.cannot_find_prog_unit_error
396: (p_module_name => 'PER_REQUISITIONS'
397: ,p_hook_type => 'AI');
398: --
399: end;
400: --