DBA Data[Home] [Help]

APPS.OTA_CRE_INS dependencies on OTA_CERT_ENROLLMENTS

Line 87: -- Insert the row into: ota_cert_enrollments

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

Line 89: insert into ota_cert_enrollments

85: --
86: --
87: -- Insert the row into: ota_cert_enrollments
88: --
89: insert into ota_cert_enrollments
90: (cert_enrollment_id
91: ,certification_id
92: ,person_id
93: ,contact_id

Line 229: Cursor C_Sel1 is select ota_cert_enrollments_s.nextval from sys.dual;

225: Procedure pre_insert
226: (p_rec in out nocopy ota_cre_shd.g_rec_type
227: ) is
228: --
229: Cursor C_Sel1 is select ota_cert_enrollments_s.nextval from sys.dual;
230: --
231: Cursor C_Sel2 is
232: Select null
233: from ota_cert_enrollments

Line 233: from ota_cert_enrollments

229: Cursor C_Sel1 is select ota_cert_enrollments_s.nextval from sys.dual;
230: --
231: Cursor C_Sel2 is
232: Select null
233: from ota_cert_enrollments
234: where cert_enrollment_id =
235: ota_cre_ins.g_cert_enrollment_id_i;
236: --
237: l_proc varchar2(72) := g_package||'pre_insert';

Line 255: fnd_message.set_token('TABLE_NAME','ota_cert_enrollments');

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

Line 400: (p_module_name => 'OTA_CERT_ENROLLMENTS'

396: --
397: when hr_api.cannot_find_prog_unit then
398: --
399: hr_api.cannot_find_prog_unit_error
400: (p_module_name => 'OTA_CERT_ENROLLMENTS'
401: ,p_hook_type => 'AI');
402: --
403: end;
404: --