DBA Data[Home] [Help]

APPS.BEN_PCU_UPD SQL Statements

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

Line: 57

Procedure dt_update_dml
	(p_rec 			 in out nocopy ben_pcu_shd.g_rec_type,
	 p_effective_date	 in	date,
	 p_datetrack_mode	 in	varchar2,
	 p_validation_start_date in	date,
	 p_validation_end_date	 in	date) is
--
  l_proc	varchar2(72) := g_package||'dt_update_dml';
Line: 85

    update  ben_per_cm_usg_f
    set
        per_cm_usg_id                   = p_rec.per_cm_usg_id,
    per_cm_id                       = p_rec.per_cm_id,
    cm_typ_usg_id                   = p_rec.cm_typ_usg_id,
    business_group_id               = p_rec.business_group_id,
    pcu_attribute_category          = p_rec.pcu_attribute_category,
    pcu_attribute1                  = p_rec.pcu_attribute1,
    pcu_attribute2                  = p_rec.pcu_attribute2,
    pcu_attribute3                  = p_rec.pcu_attribute3,
    pcu_attribute4                  = p_rec.pcu_attribute4,
    pcu_attribute5                  = p_rec.pcu_attribute5,
    pcu_attribute6                  = p_rec.pcu_attribute6,
    pcu_attribute7                  = p_rec.pcu_attribute7,
    pcu_attribute8                  = p_rec.pcu_attribute8,
    pcu_attribute9                  = p_rec.pcu_attribute9,
    pcu_attribute10                 = p_rec.pcu_attribute10,
    pcu_attribute11                 = p_rec.pcu_attribute11,
    pcu_attribute12                 = p_rec.pcu_attribute12,
    pcu_attribute13                 = p_rec.pcu_attribute13,
    pcu_attribute14                 = p_rec.pcu_attribute14,
    pcu_attribute15                 = p_rec.pcu_attribute15,
    pcu_attribute16                 = p_rec.pcu_attribute16,
    pcu_attribute17                 = p_rec.pcu_attribute17,
    pcu_attribute18                 = p_rec.pcu_attribute18,
    pcu_attribute19                 = p_rec.pcu_attribute19,
    pcu_attribute20                 = p_rec.pcu_attribute20,
    pcu_attribute21                 = p_rec.pcu_attribute21,
    pcu_attribute22                 = p_rec.pcu_attribute22,
    pcu_attribute23                 = p_rec.pcu_attribute23,
    pcu_attribute24                 = p_rec.pcu_attribute24,
    pcu_attribute25                 = p_rec.pcu_attribute25,
    pcu_attribute26                 = p_rec.pcu_attribute26,
    pcu_attribute27                 = p_rec.pcu_attribute27,
    pcu_attribute28                 = p_rec.pcu_attribute28,
    pcu_attribute29                 = p_rec.pcu_attribute29,
    pcu_attribute30                 = p_rec.pcu_attribute30,
    request_id                      = p_rec.request_id,
    program_application_id          = p_rec.program_application_id,
    program_id                      = p_rec.program_id,
    program_update_date             = p_rec.program_update_date,
    object_version_number           = p_rec.object_version_number
    where   per_cm_usg_id = p_rec.per_cm_usg_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 154

End dt_update_dml;
Line: 187

Procedure update_dml
	(p_rec 			 in out nocopy ben_pcu_shd.g_rec_type,
	 p_effective_date	 in	date,
	 p_datetrack_mode	 in	varchar2,
	 p_validation_start_date in	date,
	 p_validation_end_date	 in	date) is
--
  l_proc	varchar2(72) := g_package||'update_dml';
Line: 199

  dt_update_dml(p_rec			=> p_rec,
		p_effective_date	=> p_effective_date,
		p_datetrack_mode	=> p_datetrack_mode,
       		p_validation_start_date	=> p_validation_start_date,
		p_validation_end_date	=> p_validation_end_date);
Line: 206

End update_dml;
Line: 251

Procedure dt_pre_update
	(p_rec 			 in out nocopy ben_pcu_shd.g_rec_type,
	 p_effective_date	 in	date,
	 p_datetrack_mode	 in	varchar2,
	 p_validation_start_date in	date,
	 p_validation_end_date	 in	date) is
--
  l_proc	         varchar2(72) := g_package||'dt_pre_update';
Line: 276

    If (p_datetrack_mode = 'UPDATE_OVERRIDE') then
      hr_utility.set_location(l_proc, 15);
Line: 282

      ben_pcu_del.delete_dml
        (p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode	 => p_datetrack_mode,
	 p_validation_start_date => p_validation_start_date,
	 p_validation_end_date   => p_validation_end_date);
Line: 293

    ben_pcu_ins.insert_dml
      (p_rec			=> p_rec,
       p_effective_date		=> p_effective_date,
       p_datetrack_mode		=> p_datetrack_mode,
       p_validation_start_date	=> p_validation_start_date,
       p_validation_end_date	=> p_validation_end_date);
Line: 301

End dt_pre_update;
Line: 336

Procedure pre_update
	(p_rec 			 in out nocopy ben_pcu_shd.g_rec_type,
	 p_effective_date	 in	date,
	 p_datetrack_mode	 in	varchar2,
	 p_validation_start_date in	date,
	 p_validation_end_date	 in	date) is
--
  l_proc	varchar2(72) := g_package||'pre_update';
Line: 350

  dt_pre_update
    (p_rec 		     => p_rec,
     p_effective_date	     => p_effective_date,
     p_datetrack_mode	     => p_datetrack_mode,
     p_validation_start_date => p_validation_start_date,
     p_validation_end_date   => p_validation_end_date);
Line: 358

End pre_update;
Line: 392

Procedure post_update
	(p_rec 			 in ben_pcu_shd.g_rec_type,
	 p_effective_date	 in date,
	 p_datetrack_mode	 in varchar2,
	 p_validation_start_date in date,
	 p_validation_end_date	 in date) is
--
  l_proc	varchar2(72) := g_package||'post_update';
Line: 409

    ben_pcu_rku.after_update
      (
  p_per_cm_usg_id                 =>p_rec.per_cm_usg_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_per_cm_id                     =>p_rec.per_cm_id
 ,p_cm_typ_usg_id                 =>p_rec.cm_typ_usg_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_pcu_attribute_category        =>p_rec.pcu_attribute_category
 ,p_pcu_attribute1                =>p_rec.pcu_attribute1
 ,p_pcu_attribute2                =>p_rec.pcu_attribute2
 ,p_pcu_attribute3                =>p_rec.pcu_attribute3
 ,p_pcu_attribute4                =>p_rec.pcu_attribute4
 ,p_pcu_attribute5                =>p_rec.pcu_attribute5
 ,p_pcu_attribute6                =>p_rec.pcu_attribute6
 ,p_pcu_attribute7                =>p_rec.pcu_attribute7
 ,p_pcu_attribute8                =>p_rec.pcu_attribute8
 ,p_pcu_attribute9                =>p_rec.pcu_attribute9
 ,p_pcu_attribute10               =>p_rec.pcu_attribute10
 ,p_pcu_attribute11               =>p_rec.pcu_attribute11
 ,p_pcu_attribute12               =>p_rec.pcu_attribute12
 ,p_pcu_attribute13               =>p_rec.pcu_attribute13
 ,p_pcu_attribute14               =>p_rec.pcu_attribute14
 ,p_pcu_attribute15               =>p_rec.pcu_attribute15
 ,p_pcu_attribute16               =>p_rec.pcu_attribute16
 ,p_pcu_attribute17               =>p_rec.pcu_attribute17
 ,p_pcu_attribute18               =>p_rec.pcu_attribute18
 ,p_pcu_attribute19               =>p_rec.pcu_attribute19
 ,p_pcu_attribute20               =>p_rec.pcu_attribute20
 ,p_pcu_attribute21               =>p_rec.pcu_attribute21
 ,p_pcu_attribute22               =>p_rec.pcu_attribute22
 ,p_pcu_attribute23               =>p_rec.pcu_attribute23
 ,p_pcu_attribute24               =>p_rec.pcu_attribute24
 ,p_pcu_attribute25               =>p_rec.pcu_attribute25
 ,p_pcu_attribute26               =>p_rec.pcu_attribute26
 ,p_pcu_attribute27               =>p_rec.pcu_attribute27
 ,p_pcu_attribute28               =>p_rec.pcu_attribute28
 ,p_pcu_attribute29               =>p_rec.pcu_attribute29
 ,p_pcu_attribute30               =>p_rec.pcu_attribute30
 ,p_request_id                    =>p_rec.request_id
 ,p_program_application_id        =>p_rec.program_application_id
 ,p_program_id                    =>p_rec.program_id
 ,p_program_update_date           =>p_rec.program_update_date
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_effective_date                =>p_effective_date
 ,p_datetrack_mode                =>p_datetrack_mode
 ,p_validation_start_date         =>p_validation_start_date
 ,p_validation_end_date           =>p_validation_end_date
 ,p_effective_start_date_o        =>ben_pcu_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_pcu_shd.g_old_rec.effective_end_date
 ,p_per_cm_id_o                   =>ben_pcu_shd.g_old_rec.per_cm_id
 ,p_cm_typ_usg_id_o               =>ben_pcu_shd.g_old_rec.cm_typ_usg_id
 ,p_business_group_id_o           =>ben_pcu_shd.g_old_rec.business_group_id
 ,p_pcu_attribute_category_o      =>ben_pcu_shd.g_old_rec.pcu_attribute_category
 ,p_pcu_attribute1_o              =>ben_pcu_shd.g_old_rec.pcu_attribute1
 ,p_pcu_attribute2_o              =>ben_pcu_shd.g_old_rec.pcu_attribute2
 ,p_pcu_attribute3_o              =>ben_pcu_shd.g_old_rec.pcu_attribute3
 ,p_pcu_attribute4_o              =>ben_pcu_shd.g_old_rec.pcu_attribute4
 ,p_pcu_attribute5_o              =>ben_pcu_shd.g_old_rec.pcu_attribute5
 ,p_pcu_attribute6_o              =>ben_pcu_shd.g_old_rec.pcu_attribute6
 ,p_pcu_attribute7_o              =>ben_pcu_shd.g_old_rec.pcu_attribute7
 ,p_pcu_attribute8_o              =>ben_pcu_shd.g_old_rec.pcu_attribute8
 ,p_pcu_attribute9_o              =>ben_pcu_shd.g_old_rec.pcu_attribute9
 ,p_pcu_attribute10_o             =>ben_pcu_shd.g_old_rec.pcu_attribute10
 ,p_pcu_attribute11_o             =>ben_pcu_shd.g_old_rec.pcu_attribute11
 ,p_pcu_attribute12_o             =>ben_pcu_shd.g_old_rec.pcu_attribute12
 ,p_pcu_attribute13_o             =>ben_pcu_shd.g_old_rec.pcu_attribute13
 ,p_pcu_attribute14_o             =>ben_pcu_shd.g_old_rec.pcu_attribute14
 ,p_pcu_attribute15_o             =>ben_pcu_shd.g_old_rec.pcu_attribute15
 ,p_pcu_attribute16_o             =>ben_pcu_shd.g_old_rec.pcu_attribute16
 ,p_pcu_attribute17_o             =>ben_pcu_shd.g_old_rec.pcu_attribute17
 ,p_pcu_attribute18_o             =>ben_pcu_shd.g_old_rec.pcu_attribute18
 ,p_pcu_attribute19_o             =>ben_pcu_shd.g_old_rec.pcu_attribute19
 ,p_pcu_attribute20_o             =>ben_pcu_shd.g_old_rec.pcu_attribute20
 ,p_pcu_attribute21_o             =>ben_pcu_shd.g_old_rec.pcu_attribute21
 ,p_pcu_attribute22_o             =>ben_pcu_shd.g_old_rec.pcu_attribute22
 ,p_pcu_attribute23_o             =>ben_pcu_shd.g_old_rec.pcu_attribute23
 ,p_pcu_attribute24_o             =>ben_pcu_shd.g_old_rec.pcu_attribute24
 ,p_pcu_attribute25_o             =>ben_pcu_shd.g_old_rec.pcu_attribute25
 ,p_pcu_attribute26_o             =>ben_pcu_shd.g_old_rec.pcu_attribute26
 ,p_pcu_attribute27_o             =>ben_pcu_shd.g_old_rec.pcu_attribute27
 ,p_pcu_attribute28_o             =>ben_pcu_shd.g_old_rec.pcu_attribute28
 ,p_pcu_attribute29_o             =>ben_pcu_shd.g_old_rec.pcu_attribute29
 ,p_pcu_attribute30_o             =>ben_pcu_shd.g_old_rec.pcu_attribute30
 ,p_request_id_o                  =>ben_pcu_shd.g_old_rec.request_id
 ,p_program_application_id_o      =>ben_pcu_shd.g_old_rec.program_application_id
 ,p_program_id_o                  =>ben_pcu_shd.g_old_rec.program_id
 ,p_program_update_date_o         =>ben_pcu_shd.g_old_rec.program_update_date
 ,p_object_version_number_o       =>ben_pcu_shd.g_old_rec.object_version_number
      );
Line: 514

End post_update;
Line: 720

  If (p_rec.program_update_date = hr_api.g_date) then
    p_rec.program_update_date :=
    ben_pcu_shd.g_old_rec.program_update_date;
Line: 768

  ben_pcu_bus.update_validate
	(p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode  	 => p_datetrack_mode,
	 p_validation_start_date => l_validation_start_date,
	 p_validation_end_date	 => l_validation_end_date);
Line: 777

  pre_update
	(p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode	 => p_datetrack_mode,
	 p_validation_start_date => l_validation_start_date,
	 p_validation_end_date	 => l_validation_end_date);
Line: 786

  update_dml
	(p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode	 => p_datetrack_mode,
	 p_validation_start_date => l_validation_start_date,
	 p_validation_end_date	 => l_validation_end_date);
Line: 795

  post_update
	(p_rec			 => p_rec,
	 p_effective_date	 => p_effective_date,
	 p_datetrack_mode	 => p_datetrack_mode,
	 p_validation_start_date => l_validation_start_date,
	 p_validation_end_date	 => l_validation_end_date);
Line: 848

  p_program_update_date          in date             default hr_api.g_date,
  p_object_version_number        in out nocopy number,
  p_effective_date		 in date,
  p_datetrack_mode		 in varchar2
  ) is
--
  l_rec		ben_pcu_shd.g_rec_type;
Line: 906

  p_program_update_date,
  p_object_version_number
  );