DBA Data[Home] [Help]

APPS.PER_BPR_DEL SQL Statements

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

Line: 51

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

  delete from per_bf_payroll_runs
  where payroll_run_id = p_rec.payroll_run_id;
Line: 74

End delete_dml;
Line: 108

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

    per_bpr_rkd.after_delete
      (
      p_payroll_run_id
        => p_rec.payroll_run_id,
      p_payroll_id_o
      => per_bpr_shd.g_old_rec.payroll_id,
      p_business_group_id_o
      => per_bpr_shd.g_old_rec.business_group_id,
      p_payroll_identifier_o
      => per_bpr_shd.g_old_rec.payroll_identifier,
      p_period_start_date_o
      => per_bpr_shd.g_old_rec.period_start_date,
      p_period_end_date_o
      => per_bpr_shd.g_old_rec.period_end_date,
      p_processing_date_o
      => per_bpr_shd.g_old_rec.processing_date,
      p_object_version_number_o
      => per_bpr_shd.g_old_rec.object_version_number,
      p_bpr_attribute_category_o
      => per_bpr_shd.g_old_rec.bpr_attribute_category,
      p_bpr_attribute1_o
      => per_bpr_shd.g_old_rec.bpr_attribute1,
      p_bpr_attribute2_o
      => per_bpr_shd.g_old_rec.bpr_attribute2,
      p_bpr_attribute3_o
      => per_bpr_shd.g_old_rec.bpr_attribute3,
      p_bpr_attribute4_o
      => per_bpr_shd.g_old_rec.bpr_attribute4,
      p_bpr_attribute5_o
      => per_bpr_shd.g_old_rec.bpr_attribute5,
      p_bpr_attribute6_o
      => per_bpr_shd.g_old_rec.bpr_attribute6,
      p_bpr_attribute7_o
      => per_bpr_shd.g_old_rec.bpr_attribute7,
      p_bpr_attribute8_o
      => per_bpr_shd.g_old_rec.bpr_attribute8,
      p_bpr_attribute9_o
      => per_bpr_shd.g_old_rec.bpr_attribute9,
      p_bpr_attribute10_o
      => per_bpr_shd.g_old_rec.bpr_attribute10,
      p_bpr_attribute11_o
      => per_bpr_shd.g_old_rec.bpr_attribute11,
      p_bpr_attribute12_o
      => per_bpr_shd.g_old_rec.bpr_attribute12,
      p_bpr_attribute13_o
      => per_bpr_shd.g_old_rec.bpr_attribute13,
      p_bpr_attribute14_o
      => per_bpr_shd.g_old_rec.bpr_attribute14,
      p_bpr_attribute15_o
      => per_bpr_shd.g_old_rec.bpr_attribute15,
      p_bpr_attribute16_o
      => per_bpr_shd.g_old_rec.bpr_attribute16,
      p_bpr_attribute17_o
      => per_bpr_shd.g_old_rec.bpr_attribute17,
      p_bpr_attribute18_o
      => per_bpr_shd.g_old_rec.bpr_attribute18,
      p_bpr_attribute19_o
      => per_bpr_shd.g_old_rec.bpr_attribute19,
      p_bpr_attribute20_o
      => per_bpr_shd.g_old_rec.bpr_attribute20,
      p_bpr_attribute21_o
      => per_bpr_shd.g_old_rec.bpr_attribute21,
      p_bpr_attribute22_o
      => per_bpr_shd.g_old_rec.bpr_attribute22,
      p_bpr_attribute23_o
      => per_bpr_shd.g_old_rec.bpr_attribute23,
      p_bpr_attribute24_o
      => per_bpr_shd.g_old_rec.bpr_attribute24,
      p_bpr_attribute25_o
      => per_bpr_shd.g_old_rec.bpr_attribute25,
      p_bpr_attribute26_o
      => per_bpr_shd.g_old_rec.bpr_attribute26,
      p_bpr_attribute27_o
      => per_bpr_shd.g_old_rec.bpr_attribute27,
      p_bpr_attribute28_o
      => per_bpr_shd.g_old_rec.bpr_attribute28,
      p_bpr_attribute29_o
      => per_bpr_shd.g_old_rec.bpr_attribute29,
      p_bpr_attribute30_o
      => per_bpr_shd.g_old_rec.bpr_attribute30
      );
Line: 251

End post_delete;
Line: 276

  per_bpr_bus.delete_validate(p_rec);
Line: 280

  pre_delete(p_rec);
Line: 284

  delete_dml(p_rec);
Line: 288

  post_delete(p_rec);