DBA Data[Home] [Help]

APPS.PER_BPR_UPD SQL Statements

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

Line: 54

Procedure update_dml(p_rec in out nocopy per_bpr_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 67

  update per_bf_payroll_runs
  set
  payroll_run_id                    = p_rec.payroll_run_id,
  payroll_identifier                = p_rec.payroll_identifier,
  period_start_date                 = p_rec.period_start_date,
  period_end_date                   = p_rec.period_end_date,
  processing_date                   = p_rec.processing_date,
  object_version_number             = p_rec.object_version_number,
  bpr_attribute_category                = p_rec.bpr_attribute_category,
  bpr_attribute1                        = p_rec.bpr_attribute1,
  bpr_attribute2                        = p_rec.bpr_attribute2,
  bpr_attribute3                        = p_rec.bpr_attribute3,
  bpr_attribute4                        = p_rec.bpr_attribute4,
  bpr_attribute5                        = p_rec.bpr_attribute5,
  bpr_attribute6                        = p_rec.bpr_attribute6,
  bpr_attribute7                        = p_rec.bpr_attribute7,
  bpr_attribute8                        = p_rec.bpr_attribute8,
  bpr_attribute9                        = p_rec.bpr_attribute9,
  bpr_attribute10                       = p_rec.bpr_attribute10,
  bpr_attribute11                       = p_rec.bpr_attribute11,
  bpr_attribute12                       = p_rec.bpr_attribute12,
  bpr_attribute13                       = p_rec.bpr_attribute13,
  bpr_attribute14                       = p_rec.bpr_attribute14,
  bpr_attribute15                       = p_rec.bpr_attribute15,
  bpr_attribute16                       = p_rec.bpr_attribute16,
  bpr_attribute17                       = p_rec.bpr_attribute17,
  bpr_attribute18                       = p_rec.bpr_attribute18,
  bpr_attribute19                       = p_rec.bpr_attribute19,
  bpr_attribute20                       = p_rec.bpr_attribute20,
  bpr_attribute21                       = p_rec.bpr_attribute21,
  bpr_attribute22                       = p_rec.bpr_attribute22,
  bpr_attribute23                       = p_rec.bpr_attribute23,
  bpr_attribute24                       = p_rec.bpr_attribute24,
  bpr_attribute25                       = p_rec.bpr_attribute25,
  bpr_attribute26                       = p_rec.bpr_attribute26,
  bpr_attribute27                       = p_rec.bpr_attribute27,
  bpr_attribute28                       = p_rec.bpr_attribute28,
  bpr_attribute29                       = p_rec.bpr_attribute29,
  bpr_attribute30                       = p_rec.bpr_attribute30

  where payroll_run_id = p_rec.payroll_run_id;
Line: 127

End update_dml;
Line: 161

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

End pre_update;
Line: 203

Procedure post_update(p_effective_date   in  date,
                      p_rec in per_bpr_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 212

    per_bpr_rku.after_update
      (p_effective_date              => p_effective_date,
      p_payroll_run_id             => p_rec.payroll_run_id,
      p_payroll_identifier         => p_rec.payroll_identifier,
      p_period_start_date          => p_rec.period_start_date,
      p_period_end_date            => p_rec.period_end_date,
      p_processing_date            => p_rec.processing_date,
      p_object_version_number      => p_rec.object_version_number,
      p_bpr_attribute_category         => p_rec.bpr_attribute_category,
      p_bpr_attribute1                 => p_rec.bpr_attribute1,
      p_bpr_attribute2                 => p_rec.bpr_attribute2,
      p_bpr_attribute3                 => p_rec.bpr_attribute3,
      p_bpr_attribute4                 => p_rec.bpr_attribute4,
      p_bpr_attribute5                 => p_rec.bpr_attribute5,
      p_bpr_attribute6                 => p_rec.bpr_attribute6,
      p_bpr_attribute7                 => p_rec.bpr_attribute7,
      p_bpr_attribute8                 => p_rec.bpr_attribute8,
      p_bpr_attribute9                 => p_rec.bpr_attribute9,
      p_bpr_attribute10                => p_rec.bpr_attribute10,
      p_bpr_attribute11                => p_rec.bpr_attribute11,
      p_bpr_attribute12                => p_rec.bpr_attribute12,
      p_bpr_attribute13                => p_rec.bpr_attribute13,
      p_bpr_attribute14                => p_rec.bpr_attribute14,
      p_bpr_attribute15                => p_rec.bpr_attribute15,
      p_bpr_attribute16                => p_rec.bpr_attribute16,
      p_bpr_attribute17                => p_rec.bpr_attribute17,
      p_bpr_attribute18                => p_rec.bpr_attribute18,
      p_bpr_attribute19                => p_rec.bpr_attribute19,
      p_bpr_attribute20                => p_rec.bpr_attribute20,
      p_bpr_attribute21                => p_rec.bpr_attribute21,
      p_bpr_attribute22                => p_rec.bpr_attribute22,
      p_bpr_attribute23                => p_rec.bpr_attribute23,
      p_bpr_attribute24                => p_rec.bpr_attribute24,
      p_bpr_attribute25                => p_rec.bpr_attribute25,
      p_bpr_attribute26                => p_rec.bpr_attribute26,
      p_bpr_attribute27                => p_rec.bpr_attribute27,
      p_bpr_attribute28                => p_rec.bpr_attribute28,
      p_bpr_attribute29                => p_rec.bpr_attribute29,
      p_bpr_attribute30                => p_rec.bpr_attribute30,
      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: 340

End post_update;
Line: 581

  per_bpr_bus.update_validate(p_effective_date,
                             p_rec
                             );
Line: 587

  pre_update(p_rec);
Line: 591

  update_dml(p_rec);
Line: 595

  post_update(p_effective_date
	     ,p_rec);