DBA Data[Home] [Help]

APPS.IRC_CMP_DEL SQL Statements

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

Line: 51

Procedure delete_dml
  (p_rec in irc_cmp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'delete_dml';
Line: 64

  delete from irc_comm_properties
  where communication_property_id = p_rec.communication_property_id;
Line: 80

End delete_dml;
Line: 114

Procedure pre_delete(p_rec in irc_cmp_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'pre_delete';
Line: 122

End pre_delete;
Line: 156

Procedure post_delete(p_rec in irc_cmp_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_delete';
Line: 164

    irc_cmp_rkd.after_delete
      (p_communication_property_id
      => p_rec.communication_property_id
      ,p_object_type_o
      => irc_cmp_shd.g_old_rec.object_type
      ,p_object_id_o
      => irc_cmp_shd.g_old_rec.object_id
      ,p_default_comm_status_o
      => irc_cmp_shd.g_old_rec.default_comm_status
      ,p_allow_attachment_flag_o
      => irc_cmp_shd.g_old_rec.allow_attachment_flag
      ,p_auto_notification_flag_o
      => irc_cmp_shd.g_old_rec.auto_notification_flag
      ,p_allow_add_recipients_o
      => irc_cmp_shd.g_old_rec.allow_add_recipients
      ,p_default_moderator_o
      => irc_cmp_shd.g_old_rec.default_moderator
      ,p_attribute_category_o
      => irc_cmp_shd.g_old_rec.attribute_category
      ,p_attribute1_o
      => irc_cmp_shd.g_old_rec.attribute1
      ,p_attribute2_o
      => irc_cmp_shd.g_old_rec.attribute2
      ,p_attribute3_o
      => irc_cmp_shd.g_old_rec.attribute3
      ,p_attribute4_o
      => irc_cmp_shd.g_old_rec.attribute4
      ,p_attribute5_o
      => irc_cmp_shd.g_old_rec.attribute5
      ,p_attribute6_o
      => irc_cmp_shd.g_old_rec.attribute6
      ,p_attribute7_o
      => irc_cmp_shd.g_old_rec.attribute7
      ,p_attribute8_o
      => irc_cmp_shd.g_old_rec.attribute8
      ,p_attribute9_o
      => irc_cmp_shd.g_old_rec.attribute9
      ,p_attribute10_o
      => irc_cmp_shd.g_old_rec.attribute10
      ,p_information_category_o
      => irc_cmp_shd.g_old_rec.information_category
      ,p_information1_o
      => irc_cmp_shd.g_old_rec.information1
      ,p_information2_o
      => irc_cmp_shd.g_old_rec.information2
      ,p_information3_o
      => irc_cmp_shd.g_old_rec.information3
      ,p_information4_o
      => irc_cmp_shd.g_old_rec.information4
      ,p_information5_o
      => irc_cmp_shd.g_old_rec.information5
      ,p_information6_o
      => irc_cmp_shd.g_old_rec.information6
      ,p_information7_o
      => irc_cmp_shd.g_old_rec.information7
      ,p_information8_o
      => irc_cmp_shd.g_old_rec.information8
      ,p_information9_o
      => irc_cmp_shd.g_old_rec.information9
      ,p_information10_o
      => irc_cmp_shd.g_old_rec.information10
      ,p_object_version_number_o
      => irc_cmp_shd.g_old_rec.object_version_number
      );
Line: 240

End post_delete;
Line: 263

  irc_cmp_bus.delete_validate(p_rec);
Line: 270

  irc_cmp_del.pre_delete(p_rec);
Line: 274

  irc_cmp_del.delete_dml(p_rec);
Line: 278

  irc_cmp_del.post_delete(p_rec);