DBA Data[Home] [Help]

APPS.PER_BBA_DEL SQL Statements

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

Line: 51

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

  delete from per_bf_balance_amounts
  where balance_amount_id = p_rec.balance_amount_id;
Line: 74

End delete_dml;
Line: 108

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

End pre_delete;
Line: 150

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

    per_bba_rkd.after_delete
      (
      p_balance_amount_id
        => p_rec.balance_amount_id,
      p_balance_type_id_o
      => per_bba_shd.g_old_rec.balance_type_id,
      p_processed_assignment_id_o
      => per_bba_shd.g_old_rec.processed_assignment_id,
      p_business_group_id_o
      => per_bba_shd.g_old_rec.business_group_id,
      p_ytd_amount_o
      => per_bba_shd.g_old_rec.ytd_amount,
      p_fytd_amount_o
      => per_bba_shd.g_old_rec.fytd_amount,
      p_ptd_amount_o
      => per_bba_shd.g_old_rec.ptd_amount,
      p_mtd_amount_o
      => per_bba_shd.g_old_rec.mtd_amount,
      p_qtd_amount_o
      => per_bba_shd.g_old_rec.qtd_amount,
      p_run_amount_o
      => per_bba_shd.g_old_rec.run_amount,
      p_object_version_number_o
      => per_bba_shd.g_old_rec.object_version_number,
      p_bba_attribute_category_o
      => per_bba_shd.g_old_rec.bba_attribute_category,
      p_bba_attribute1_o
      => per_bba_shd.g_old_rec.bba_attribute1,
      p_bba_attribute2_o
      => per_bba_shd.g_old_rec.bba_attribute2,
      p_bba_attribute3_o
      => per_bba_shd.g_old_rec.bba_attribute3,
      p_bba_attribute4_o
      => per_bba_shd.g_old_rec.bba_attribute4,
      p_bba_attribute5_o
      => per_bba_shd.g_old_rec.bba_attribute5,
      p_bba_attribute6_o
      => per_bba_shd.g_old_rec.bba_attribute6,
      p_bba_attribute7_o
      => per_bba_shd.g_old_rec.bba_attribute7,
      p_bba_attribute8_o
      => per_bba_shd.g_old_rec.bba_attribute8,
      p_bba_attribute9_o
      => per_bba_shd.g_old_rec.bba_attribute9,
      p_bba_attribute10_o
      => per_bba_shd.g_old_rec.bba_attribute10,
      p_bba_attribute11_o
      => per_bba_shd.g_old_rec.bba_attribute11,
      p_bba_attribute12_o
      => per_bba_shd.g_old_rec.bba_attribute12,
      p_bba_attribute13_o
      => per_bba_shd.g_old_rec.bba_attribute13,
      p_bba_attribute14_o
      => per_bba_shd.g_old_rec.bba_attribute14,
      p_bba_attribute15_o
      => per_bba_shd.g_old_rec.bba_attribute15,
      p_bba_attribute16_o
      => per_bba_shd.g_old_rec.bba_attribute16,
      p_bba_attribute17_o
      => per_bba_shd.g_old_rec.bba_attribute17,
      p_bba_attribute18_o
      => per_bba_shd.g_old_rec.bba_attribute18,
      p_bba_attribute19_o
      => per_bba_shd.g_old_rec.bba_attribute19,
      p_bba_attribute20_o
      => per_bba_shd.g_old_rec.bba_attribute20,
      p_bba_attribute21_o
      => per_bba_shd.g_old_rec.bba_attribute21,
      p_bba_attribute22_o
      => per_bba_shd.g_old_rec.bba_attribute22,
      p_bba_attribute23_o
      => per_bba_shd.g_old_rec.bba_attribute23,
      p_bba_attribute24_o
      => per_bba_shd.g_old_rec.bba_attribute24,
      p_bba_attribute25_o
      => per_bba_shd.g_old_rec.bba_attribute25,
      p_bba_attribute26_o
      => per_bba_shd.g_old_rec.bba_attribute26,
      p_bba_attribute27_o
      => per_bba_shd.g_old_rec.bba_attribute27,
      p_bba_attribute28_o
      => per_bba_shd.g_old_rec.bba_attribute28,
      p_bba_attribute29_o
      => per_bba_shd.g_old_rec.bba_attribute29,
      p_bba_attribute30_o
      => per_bba_shd.g_old_rec.bba_attribute30
      );
Line: 257

End post_delete;
Line: 282

  per_bba_bus.delete_validate(p_rec);
Line: 286

  pre_delete(p_rec);
Line: 290

  delete_dml(p_rec);
Line: 294

  post_delete(p_rec);