DBA Data[Home] [Help]

APPS.OTA_LPM_INS dependencies on OTA_LEARNING_PATH_MEMBERS

Line 88: -- Insert the row into: ota_learning_path_members

84: p_rec.object_version_number := 1; -- Initialise the object version
85: --
86: --
87: --
88: -- Insert the row into: ota_learning_path_members
89: --
90: insert into ota_learning_path_members
91: (learning_path_member_id
92: ,learning_path_id

Line 90: insert into ota_learning_path_members

86: --
87: --
88: -- Insert the row into: ota_learning_path_members
89: --
90: insert into ota_learning_path_members
91: (learning_path_member_id
92: ,learning_path_id
93: ,activity_version_id
94: ,course_sequence

Line 222: Cursor C_Sel1 is select ota_learning_path_members_s.nextval from sys.dual;

218: Procedure pre_insert
219: (p_rec in out nocopy ota_lpm_shd.g_rec_type
220: ) is
221: --
222: Cursor C_Sel1 is select ota_learning_path_members_s.nextval from sys.dual;
223: --
224: Cursor C_Sel2 is
225: Select null
226: from ota_learning_path_members

Line 226: from ota_learning_path_members

222: Cursor C_Sel1 is select ota_learning_path_members_s.nextval from sys.dual;
223: --
224: Cursor C_Sel2 is
225: Select null
226: from ota_learning_path_members
227: where learning_path_member_id =
228: ota_lpm_ins.g_learning_path_member_id_i;
229: --
230: l_proc varchar2(72) := g_package||'pre_insert';

Line 248: fnd_message.set_token('TABLE_NAME','ota_learning_path_members');

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

Line 387: (p_module_name => 'OTA_LEARNING_PATH_MEMBERS'

383: --
384: when hr_api.cannot_find_prog_unit then
385: --
386: hr_api.cannot_find_prog_unit_error
387: (p_module_name => 'OTA_LEARNING_PATH_MEMBERS'
388: ,p_hook_type => 'AI');
389: --
390: end;
391: --