DBA Data[Home] [Help]

APPS.OTA_CMS_INS SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 75

Procedure insert_dml
  (p_rec in out nocopy ota_cms_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_dml';
Line: 89

  insert into ota_chat_messages
      (chat_message_id
      ,chat_id
      ,business_group_id
      ,person_id
      ,contact_id
      ,target_person_id
      ,target_contact_id
      ,message_text
      ,object_version_number
      )
  Values
    (p_rec.chat_message_id
    ,p_rec.chat_id
    ,p_rec.business_group_id
    ,p_rec.person_id
    ,p_rec.contact_id
    ,p_rec.target_person_id
    ,p_rec.target_contact_id
    ,p_rec.message_text
    ,p_rec.object_version_number
    );
Line: 134

End insert_dml;
Line: 173

Procedure pre_insert
  (p_rec  in out nocopy ota_cms_shd.g_rec_type
  ) is
--
  Cursor C_Sel1 is select ota_chat_messages_s.nextval from sys.dual;
Line: 180

    Select null
      from ota_chat_messages
     where chat_message_id =
             ota_cms_ins.g_chat_message_id_i;
Line: 185

  l_proc   varchar2(72) := g_package||'pre_insert';
Line: 226

End pre_insert;
Line: 260

Procedure post_insert
  (p_effective_date               in date
  ,p_rec                          in ota_cms_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_insert';
Line: 271

    ota_cms_rki.after_insert
      (p_effective_date              => p_effective_date
      ,p_chat_message_id
      => p_rec.chat_message_id
      ,p_chat_id
      => p_rec.chat_id
      ,p_business_group_id
      => p_rec.business_group_id
      ,p_person_id
      => p_rec.person_id
      ,p_contact_id
      => p_rec.contact_id
      ,p_target_person_id
      => p_rec.target_person_id
      ,p_target_contact_id
      => p_rec.target_contact_id
      ,p_message_text
      => p_rec.message_text
      ,p_object_version_number
      => p_rec.object_version_number
      );
Line: 304

End post_insert;
Line: 321

  ota_cms_bus.insert_validate
     (p_effective_date
     ,p_rec
     );
Line: 331

  ota_cms_ins.pre_insert(p_rec);
Line: 335

  ota_cms_ins.insert_dml(p_rec);
Line: 339

  ota_cms_ins.post_insert
     (p_effective_date
     ,p_rec
     );