DBA Data[Home] [Help]

APPS.OTA_CMS_INS dependencies on OTA_CHAT_MESSAGES

Line 87: -- Insert the row into: ota_chat_messages

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

Line 89: insert into ota_chat_messages

85: --
86: --
87: -- Insert the row into: ota_chat_messages
88: --
89: insert into ota_chat_messages
90: (chat_message_id
91: ,chat_id
92: ,business_group_id
93: ,person_id

Line 177: Cursor C_Sel1 is select ota_chat_messages_s.nextval from sys.dual;

173: Procedure pre_insert
174: (p_rec in out nocopy ota_cms_shd.g_rec_type
175: ) is
176: --
177: Cursor C_Sel1 is select ota_chat_messages_s.nextval from sys.dual;
178: --
179: Cursor C_Sel2 is
180: Select null
181: from ota_chat_messages

Line 181: from ota_chat_messages

177: Cursor C_Sel1 is select ota_chat_messages_s.nextval from sys.dual;
178: --
179: Cursor C_Sel2 is
180: Select null
181: from ota_chat_messages
182: where chat_message_id =
183: ota_cms_ins.g_chat_message_id_i;
184: --
185: l_proc varchar2(72) := g_package||'pre_insert';

Line 203: fnd_message.set_token('TABLE_NAME','ota_chat_messages');

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

Line 298: (p_module_name => 'OTA_CHAT_MESSAGES'

294: --
295: when hr_api.cannot_find_prog_unit then
296: --
297: hr_api.cannot_find_prog_unit_error
298: (p_module_name => 'OTA_CHAT_MESSAGES'
299: ,p_hook_type => 'AI');
300: --
301: end;
302: --