DBA Data[Home] [Help]

APPS.IRC_CMT_UPD SQL Statements

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

Line: 54

Procedure update_dml
  (p_rec in out nocopy irc_cmt_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 70

  update irc_comm_topics
    set
     communication_topic_id          = p_rec.communication_topic_id
    ,communication_id                = p_rec.communication_id
    ,subject                         = p_rec.subject
    ,status                          = p_rec.status
    ,object_version_number           = p_rec.object_version_number
    where communication_topic_id = p_rec.communication_topic_id;
Line: 102

End update_dml;
Line: 136

Procedure pre_update
  (p_rec in irc_cmt_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'pre_update';
Line: 146

End pre_update;
Line: 180

Procedure post_update
  (p_effective_date               in date
  ,p_rec                          in irc_cmt_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 191

    irc_cmt_rku.after_update
      (p_effective_date              => p_effective_date
      ,p_communication_topic_id
      => p_rec.communication_topic_id
      ,p_communication_id
      => p_rec.communication_id
      ,p_subject
      => p_rec.subject
      ,p_status
      => p_rec.status
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_communication_id_o
      => irc_cmt_shd.g_old_rec.communication_id
      ,p_subject_o
      => irc_cmt_shd.g_old_rec.subject
      ,p_status_o
      => irc_cmt_shd.g_old_rec.status
      ,p_object_version_number_o
      => irc_cmt_shd.g_old_rec.object_version_number
      );
Line: 224

End post_update;
Line: 322

  irc_cmt_bus.update_validate
     (p_effective_date
     ,p_rec
     );
Line: 332

  irc_cmt_upd.pre_update(p_rec);
Line: 336

  irc_cmt_upd.update_dml(p_rec);
Line: 340

  irc_cmt_upd.post_update
     (p_effective_date
     ,p_rec
     );