DBA Data[Home] [Help]

APPS.OTA_OFF_DEL SQL Statements

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

Line: 51

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

  delete from ota_offerings
  where offering_id = p_rec.offering_id;
Line: 80

End delete_dml;
Line: 114

Procedure pre_delete(p_rec in ota_off_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 ota_off_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_delete';
Line: 164

    ota_off_rkd.after_delete
      (p_offering_id
      => p_rec.offering_id
      ,p_activity_version_id_o
      => ota_off_shd.g_old_rec.activity_version_id
      ,p_business_group_id_o
      => ota_off_shd.g_old_rec.business_group_id

      ,p_start_date_o
      => ota_off_shd.g_old_rec.start_date
      ,p_end_date_o
      => ota_off_shd.g_old_rec.end_date
      ,p_owner_id_o
      => ota_off_shd.g_old_rec.owner_id
      ,p_delivery_mode_id_o
      => ota_off_shd.g_old_rec.delivery_mode_id
      ,p_language_id_o
      => ota_off_shd.g_old_rec.language_id
      ,p_duration_o
      => ota_off_shd.g_old_rec.duration
      ,p_duration_units_o
      => ota_off_shd.g_old_rec.duration_units
      ,p_learning_object_id_o
      => ota_off_shd.g_old_rec.learning_object_id
      ,p_player_toolbar_flag_o
      => ota_off_shd.g_old_rec.player_toolbar_flag
      ,p_player_toolbar_bitset_o
      => ota_off_shd.g_old_rec.player_toolbar_bitset
      ,p_player_new_window_flag_o
      => ota_off_shd.g_old_rec.player_new_window_flag
      ,p_maximum_attendees_o
      => ota_off_shd.g_old_rec.maximum_attendees
      ,p_maximum_internal_attendees_o
      => ota_off_shd.g_old_rec.maximum_internal_attendees
      ,p_minimum_attendees_o
      => ota_off_shd.g_old_rec.minimum_attendees
      ,p_actual_cost_o
      => ota_off_shd.g_old_rec.actual_cost
      ,p_budget_cost_o
      => ota_off_shd.g_old_rec.budget_cost
      ,p_budget_currency_code_o
      => ota_off_shd.g_old_rec.budget_currency_code
      ,p_price_basis_o
      => ota_off_shd.g_old_rec.price_basis
      ,p_currency_code_o
      => ota_off_shd.g_old_rec.currency_code
      ,p_standard_price_o
      => ota_off_shd.g_old_rec.standard_price
      ,p_object_version_number_o
      => ota_off_shd.g_old_rec.object_version_number
      ,p_attribute_category_o
      => ota_off_shd.g_old_rec.attribute_category
      ,p_attribute1_o
      => ota_off_shd.g_old_rec.attribute1
      ,p_attribute2_o
      => ota_off_shd.g_old_rec.attribute2
      ,p_attribute3_o
      => ota_off_shd.g_old_rec.attribute3
      ,p_attribute4_o
      => ota_off_shd.g_old_rec.attribute4
      ,p_attribute5_o
      => ota_off_shd.g_old_rec.attribute5
      ,p_attribute6_o
      => ota_off_shd.g_old_rec.attribute6
      ,p_attribute7_o
      => ota_off_shd.g_old_rec.attribute7
      ,p_attribute8_o
      => ota_off_shd.g_old_rec.attribute8
      ,p_attribute9_o
      => ota_off_shd.g_old_rec.attribute9
      ,p_attribute10_o
      => ota_off_shd.g_old_rec.attribute10
      ,p_attribute11_o
      => ota_off_shd.g_old_rec.attribute11
      ,p_attribute12_o
      => ota_off_shd.g_old_rec.attribute12
      ,p_attribute13_o
      => ota_off_shd.g_old_rec.attribute13
      ,p_attribute14_o
      => ota_off_shd.g_old_rec.attribute14
      ,p_attribute15_o
      => ota_off_shd.g_old_rec.attribute15
      ,p_attribute16_o
      => ota_off_shd.g_old_rec.attribute16
      ,p_attribute17_o
      => ota_off_shd.g_old_rec.attribute17
      ,p_attribute18_o
      => ota_off_shd.g_old_rec.attribute18
      ,p_attribute19_o
      => ota_off_shd.g_old_rec.attribute19
      ,p_attribute20_o
      => ota_off_shd.g_old_rec.attribute20
      ,p_data_source_o
      => ota_off_shd.g_old_rec.data_source
      ,p_vendor_id_o
      => ota_off_shd.g_old_rec.vendor_id
      ,p_competency_update_level_o  => ota_off_shd.g_old_rec.competency_update_level
      ,p_language_code    => ota_off_shd.g_old_rec.language_code  -- 2733966
);
Line: 275

End post_delete;
Line: 298

  ota_off_bus.delete_validate(p_rec);
Line: 305

  ota_off_del.pre_delete(p_rec);
Line: 309

  ota_off_del.delete_dml(p_rec);
Line: 313

  ota_off_del.post_delete(p_rec);