DBA Data[Home] [Help]

APPS.OTA_FCE_INS dependencies on OTA_OPEN_FC_ENROLLMENTS

Line 87: -- Insert the row into: ota_open_fc_enrollments

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

Line 89: insert into ota_open_fc_enrollments

85: ota_fce_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: ota_open_fc_enrollments
88: --
89: insert into ota_open_fc_enrollments
90: (enrollment_id
91: ,forum_id
92: ,business_group_id
93: ,person_id

Line 173: Cursor C_Sel1 is select ota_open_fc_enrollments_s.nextval from sys.dual;

169: Procedure pre_insert
170: (p_rec in out nocopy ota_fce_shd.g_rec_type
171: ) is
172: --
173: Cursor C_Sel1 is select ota_open_fc_enrollments_s.nextval from sys.dual;
174: --
175: Cursor C_Sel2 is
176: Select null
177: from ota_open_fc_enrollments

Line 177: from ota_open_fc_enrollments

173: Cursor C_Sel1 is select ota_open_fc_enrollments_s.nextval from sys.dual;
174: --
175: Cursor C_Sel2 is
176: Select null
177: from ota_open_fc_enrollments
178: where enrollment_id =
179: ota_fce_ins.g_enrollment_id_i;
180: --
181: l_proc varchar2(72) := g_package||'pre_insert';

Line 199: fnd_message.set_token('TABLE_NAME','ota_open_fc_enrollments');

195: --
196: -- The primary key values are already in use.
197: --
198: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
199: fnd_message.set_token('TABLE_NAME','ota_open_fc_enrollments');
200: fnd_message.raise_error;
201: End If;
202: Close C_Sel2;
203: --

Line 290: (p_module_name => 'OTA_OPEN_FC_ENROLLMENTS'

286: --
287: when hr_api.cannot_find_prog_unit then
288: --
289: hr_api.cannot_find_prog_unit_error
290: (p_module_name => 'OTA_OPEN_FC_ENROLLMENTS'
291: ,p_hook_type => 'AI');
292: --
293: end;
294: --