DBA Data[Home] [Help]

APPS.PER_BPD_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_bpd_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 67

  update per_bf_payment_details
  set
  payment_detail_id                 = p_rec.payment_detail_id,
  check_number                      = p_rec.check_number,
  payment_date                      = p_rec.payment_date,
  amount                            = p_rec.amount,
  check_type                        = p_rec.check_type,
  object_version_number             = p_rec.object_version_number,
  bpd_attribute_category            = p_rec.bpd_attribute_category,
  bpd_attribute1                    = p_rec.bpd_attribute1,
  bpd_attribute2                    = p_rec.bpd_attribute2,
  bpd_attribute3                    = p_rec.bpd_attribute3,
  bpd_attribute4                    = p_rec.bpd_attribute4,
  bpd_attribute5                    = p_rec.bpd_attribute5,
  bpd_attribute6                    = p_rec.bpd_attribute6,
  bpd_attribute7                    = p_rec.bpd_attribute7,
  bpd_attribute8                    = p_rec.bpd_attribute8,
  bpd_attribute9                    = p_rec.bpd_attribute9,
  bpd_attribute10                   = p_rec.bpd_attribute10,
  bpd_attribute11                   = p_rec.bpd_attribute11,
  bpd_attribute12                   = p_rec.bpd_attribute12,
  bpd_attribute13                   = p_rec.bpd_attribute13,
  bpd_attribute14                   = p_rec.bpd_attribute14,
  bpd_attribute15                   = p_rec.bpd_attribute15,
  bpd_attribute16                   = p_rec.bpd_attribute16,
  bpd_attribute17                   = p_rec.bpd_attribute17,
  bpd_attribute18                   = p_rec.bpd_attribute18,
  bpd_attribute19                   = p_rec.bpd_attribute19,
  bpd_attribute20                   = p_rec.bpd_attribute20,
  bpd_attribute21                   = p_rec.bpd_attribute21,
  bpd_attribute22                   = p_rec.bpd_attribute22,
  bpd_attribute23                   = p_rec.bpd_attribute23,
  bpd_attribute24                   = p_rec.bpd_attribute24,
  bpd_attribute25                   = p_rec.bpd_attribute25,
  bpd_attribute26                   = p_rec.bpd_attribute26,
  bpd_attribute27                   = p_rec.bpd_attribute27,
  bpd_attribute28                   = p_rec.bpd_attribute28,
  bpd_attribute29                   = p_rec.bpd_attribute29,
  bpd_attribute30                   = p_rec.bpd_attribute30
  where payment_detail_id = p_rec.payment_detail_id;
Line: 126

End update_dml;
Line: 160

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

End pre_update;
Line: 202

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

    per_bpd_rku.after_update
      (p_effective_date            => p_effective_date,
      p_payment_detail_id          => p_rec.payment_detail_id,
      p_check_number               => p_rec.check_number,
      p_payment_date               => p_rec.payment_date,
      p_amount                     => p_rec.amount,
      p_check_type                 => p_rec.check_type,
      p_object_version_number      => p_rec.object_version_number,
      p_bpd_attribute_category     => p_rec.bpd_attribute_category,
      p_bpd_attribute1             => p_rec.bpd_attribute1,
      p_bpd_attribute2             => p_rec.bpd_attribute2,
      p_bpd_attribute3             => p_rec.bpd_attribute3,
      p_bpd_attribute4             => p_rec.bpd_attribute4,
      p_bpd_attribute5             => p_rec.bpd_attribute5,
      p_bpd_attribute6             => p_rec.bpd_attribute6,
      p_bpd_attribute7             => p_rec.bpd_attribute7,
      p_bpd_attribute8             => p_rec.bpd_attribute8,
      p_bpd_attribute9             => p_rec.bpd_attribute9,
      p_bpd_attribute10            => p_rec.bpd_attribute10,
      p_bpd_attribute11            => p_rec.bpd_attribute11,
      p_bpd_attribute12            => p_rec.bpd_attribute12,
      p_bpd_attribute13            => p_rec.bpd_attribute13,
      p_bpd_attribute14            => p_rec.bpd_attribute14,
      p_bpd_attribute15            => p_rec.bpd_attribute15,
      p_bpd_attribute16            => p_rec.bpd_attribute16,
      p_bpd_attribute17            => p_rec.bpd_attribute17,
      p_bpd_attribute18            => p_rec.bpd_attribute18,
      p_bpd_attribute19            => p_rec.bpd_attribute19,
      p_bpd_attribute20            => p_rec.bpd_attribute20,
      p_bpd_attribute21            => p_rec.bpd_attribute21,
      p_bpd_attribute22            => p_rec.bpd_attribute22,
      p_bpd_attribute23            => p_rec.bpd_attribute23,
      p_bpd_attribute24            => p_rec.bpd_attribute24,
      p_bpd_attribute25            => p_rec.bpd_attribute25,
      p_bpd_attribute26            => p_rec.bpd_attribute26,
      p_bpd_attribute27            => p_rec.bpd_attribute27,
      p_bpd_attribute28            => p_rec.bpd_attribute28,
      p_bpd_attribute29            => p_rec.bpd_attribute29,
      p_bpd_attribute30            => p_rec.bpd_attribute30,

      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: 342

End post_update;
Line: 587

  per_bpd_bus.update_validate(p_effective_date,
                             p_rec
                             );
Line: 593

  pre_update(p_rec);
Line: 597

  update_dml(p_rec);
Line: 601

  post_update(p_effective_date,
                             p_rec);