DBA Data[Home] [Help]

APPS.OTA_FTS_INS dependencies on OTA_FORUM_THREADS

Line 87: -- Insert the row into: ota_forum_threads

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

Line 89: insert into ota_forum_threads

85: --
86: --
87: -- Insert the row into: ota_forum_threads
88: --
89: insert into ota_forum_threads
90: (forum_thread_id
91: ,forum_id
92: ,business_group_id
93: ,subject

Line 175: Cursor C_Sel1 is select ota_forum_threads_s.nextval from sys.dual;

171: Procedure pre_insert
172: (p_rec in out nocopy ota_fts_shd.g_rec_type
173: ) is
174: --
175: Cursor C_Sel1 is select ota_forum_threads_s.nextval from sys.dual;
176: --
177: Cursor C_Sel2 is
178: Select null
179: from ota_forum_threads

Line 179: from ota_forum_threads

175: Cursor C_Sel1 is select ota_forum_threads_s.nextval from sys.dual;
176: --
177: Cursor C_Sel2 is
178: Select null
179: from ota_forum_threads
180: where forum_thread_id =
181: ota_fts_ins.g_forum_thread_id_i;
182: --
183: l_proc varchar2(72) := g_package||'pre_insert';

Line 201: fnd_message.set_token('TABLE_NAME','ota_forum_threads');

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

Line 294: (p_module_name => 'OTA_FORUM_THREADS'

290: --
291: when hr_api.cannot_find_prog_unit then
292: --
293: hr_api.cannot_find_prog_unit_error
294: (p_module_name => 'OTA_FORUM_THREADS'
295: ,p_hook_type => 'AI');
296: --
297: end;
298: --