DBA Data[Home] [Help]

APPS.OTA_FMS_INS dependencies on OTA_FORUM_MESSAGES

Line 87: -- Insert the row into: ota_forum_messages

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

Line 89: insert into ota_forum_messages

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

Line 183: Cursor C_Sel1 is select ota_forum_messages_s.nextval from sys.dual;

179: Procedure pre_insert
180: (p_rec in out nocopy ota_fms_shd.g_rec_type
181: ) is
182: --
183: Cursor C_Sel1 is select ota_forum_messages_s.nextval from sys.dual;
184: --
185: Cursor C_Sel2 is
186: Select null
187: from ota_forum_messages

Line 187: from ota_forum_messages

183: Cursor C_Sel1 is select ota_forum_messages_s.nextval from sys.dual;
184: --
185: Cursor C_Sel2 is
186: Select null
187: from ota_forum_messages
188: where forum_message_id =
189: ota_fms_ins.g_forum_message_id_i;
190: --
191: l_proc varchar2(72) := g_package||'pre_insert';

Line 209: fnd_message.set_token('TABLE_NAME','ota_forum_messages');

205: --
206: -- The primary key values are already in use.
207: --
208: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
209: fnd_message.set_token('TABLE_NAME','ota_forum_messages');
210: fnd_message.raise_error;
211: End If;
212: Close C_Sel2;
213: --

Line 310: (p_module_name => 'OTA_FORUM_MESSAGES'

306: --
307: when hr_api.cannot_find_prog_unit then
308: --
309: hr_api.cannot_find_prog_unit_error
310: (p_module_name => 'OTA_FORUM_MESSAGES'
311: ,p_hook_type => 'AI');
312: --
313: end;
314: --