DBA Data[Home] [Help]

APPS.PER_BPD_DEL SQL Statements

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

Line: 51

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

  delete from per_bf_payment_details
  where payment_detail_id = p_rec.payment_detail_id;
Line: 74

End delete_dml;
Line: 108

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

    per_bpd_rkd.after_delete
      (
      p_payment_detail_id
        => p_rec.payment_detail_id,
      p_processed_assignment_id_o
      => per_bpd_shd.g_old_rec.processed_assignment_id,
      p_personal_payment_method_id_o
      => per_bpd_shd.g_old_rec.personal_payment_method_id,
      p_business_group_id_o
      => per_bpd_shd.g_old_rec.business_group_id,
      p_check_number_o
      => per_bpd_shd.g_old_rec.check_number,
      p_payment_date_o
      => per_bpd_shd.g_old_rec.payment_date,
      p_amount_o
      => per_bpd_shd.g_old_rec.amount,
      p_check_type_o
      => per_bpd_shd.g_old_rec.check_type,
      p_object_version_number_o
      => per_bpd_shd.g_old_rec.object_version_number,
      p_bpd_attribute_category_o
      => per_bpd_shd.g_old_rec.bpd_attribute_category,
      p_bpd_attribute1_o
      => per_bpd_shd.g_old_rec.bpd_attribute1,
      p_bpd_attribute2_o
      => per_bpd_shd.g_old_rec.bpd_attribute2,
      p_bpd_attribute3_o
      => per_bpd_shd.g_old_rec.bpd_attribute3,
      p_bpd_attribute4_o
      => per_bpd_shd.g_old_rec.bpd_attribute4,
      p_bpd_attribute5_o
      => per_bpd_shd.g_old_rec.bpd_attribute5,
      p_bpd_attribute6_o
      => per_bpd_shd.g_old_rec.bpd_attribute6,
      p_bpd_attribute7_o
      => per_bpd_shd.g_old_rec.bpd_attribute7,
      p_bpd_attribute8_o
      => per_bpd_shd.g_old_rec.bpd_attribute8,
      p_bpd_attribute9_o
      => per_bpd_shd.g_old_rec.bpd_attribute9,
      p_bpd_attribute10_o
      => per_bpd_shd.g_old_rec.bpd_attribute10,
      p_bpd_attribute11_o
      => per_bpd_shd.g_old_rec.bpd_attribute11,
      p_bpd_attribute12_o
      => per_bpd_shd.g_old_rec.bpd_attribute12,
      p_bpd_attribute13_o
      => per_bpd_shd.g_old_rec.bpd_attribute13,
      p_bpd_attribute14_o
      => per_bpd_shd.g_old_rec.bpd_attribute14,
      p_bpd_attribute15_o
      => per_bpd_shd.g_old_rec.bpd_attribute15,
      p_bpd_attribute16_o
      => per_bpd_shd.g_old_rec.bpd_attribute16,
      p_bpd_attribute17_o
      => per_bpd_shd.g_old_rec.bpd_attribute17,
      p_bpd_attribute18_o
      => per_bpd_shd.g_old_rec.bpd_attribute18,
      p_bpd_attribute19_o
      => per_bpd_shd.g_old_rec.bpd_attribute19,
      p_bpd_attribute20_o
      => per_bpd_shd.g_old_rec.bpd_attribute20,
      p_bpd_attribute21_o
      => per_bpd_shd.g_old_rec.bpd_attribute21,
      p_bpd_attribute22_o
      => per_bpd_shd.g_old_rec.bpd_attribute22,
      p_bpd_attribute23_o
      => per_bpd_shd.g_old_rec.bpd_attribute23,
      p_bpd_attribute24_o
      => per_bpd_shd.g_old_rec.bpd_attribute24,
      p_bpd_attribute25_o
      => per_bpd_shd.g_old_rec.bpd_attribute25,
      p_bpd_attribute26_o
      => per_bpd_shd.g_old_rec.bpd_attribute26,
      p_bpd_attribute27_o
      => per_bpd_shd.g_old_rec.bpd_attribute27,
      p_bpd_attribute28_o
      => per_bpd_shd.g_old_rec.bpd_attribute28,
      p_bpd_attribute29_o
      => per_bpd_shd.g_old_rec.bpd_attribute29,
      p_bpd_attribute30_o
      => per_bpd_shd.g_old_rec.bpd_attribute30
      );
Line: 253

End post_delete;
Line: 278

  per_bpd_bus.delete_validate(p_rec);
Line: 282

  pre_delete(p_rec);
Line: 286

  delete_dml(p_rec);
Line: 290

  post_delete(p_rec);