DBA Data[Home] [Help]

APPS.OTA_CMB_INS dependencies on OTA_CERTIFICATION_MEMBERS

Line 87: -- Insert the row into: ota_certification_members

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

Line 89: insert into ota_certification_members

85: --
86: --
87: -- Insert the row into: ota_certification_members
88: --
89: insert into ota_certification_members
90: (certification_member_id
91: ,certification_id
92: ,object_id
93: ,object_type

Line 219: Cursor C_Sel1 is select ota_certification_members_s.nextval from sys.dual;

215: Procedure pre_insert
216: (p_rec in out nocopy ota_cmb_shd.g_rec_type
217: ) is
218: --
219: Cursor C_Sel1 is select ota_certification_members_s.nextval from sys.dual;
220: --
221: Cursor C_Sel2 is
222: Select null
223: from ota_certification_members

Line 223: from ota_certification_members

219: Cursor C_Sel1 is select ota_certification_members_s.nextval from sys.dual;
220: --
221: Cursor C_Sel2 is
222: Select null
223: from ota_certification_members
224: where certification_member_id =
225: ota_cmb_ins.g_certification_member_id_i;
226: --
227: l_proc varchar2(72) := g_package||'pre_insert';

Line 245: fnd_message.set_token('TABLE_NAME','ota_certification_members');

241: --
242: -- The primary key values are already in use.
243: --
244: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
245: fnd_message.set_token('TABLE_NAME','ota_certification_members');
246: fnd_message.raise_error;
247: End If;
248: Close C_Sel2;
249: --

Line 382: (p_module_name => 'OTA_CERTIFICATION_MEMBERS'

378: --
379: when hr_api.cannot_find_prog_unit then
380: --
381: hr_api.cannot_find_prog_unit_error
382: (p_module_name => 'OTA_CERTIFICATION_MEMBERS'
383: ,p_hook_type => 'AI');
384: --
385: end;
386: --