DBA Data[Home] [Help]

APPS.BEN_CPO_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_cpo_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_popl_org_f
    set
        popl_org_id                     = p_rec.popl_org_id,
    business_group_id               = p_rec.business_group_id,
    cstmr_num                       = p_rec.cstmr_num,
    plcy_r_grp                      = p_rec.plcy_r_grp,
    pgm_id                          = p_rec.pgm_id,
    pl_id                           = p_rec.pl_id,
    organization_id                 = p_rec.organization_id,
    person_id                       = p_rec.person_id,
    cpo_attribute_category          = p_rec.cpo_attribute_category,
    cpo_attribute1                  = p_rec.cpo_attribute1,
    cpo_attribute2                  = p_rec.cpo_attribute2,
    cpo_attribute3                  = p_rec.cpo_attribute3,
    cpo_attribute4                  = p_rec.cpo_attribute4,
    cpo_attribute5                  = p_rec.cpo_attribute5,
    cpo_attribute6                  = p_rec.cpo_attribute6,
    cpo_attribute7                  = p_rec.cpo_attribute7,
    cpo_attribute8                  = p_rec.cpo_attribute8,
    cpo_attribute9                  = p_rec.cpo_attribute9,
    cpo_attribute10                 = p_rec.cpo_attribute10,
    cpo_attribute11                 = p_rec.cpo_attribute11,
    cpo_attribute12                 = p_rec.cpo_attribute12,
    cpo_attribute13                 = p_rec.cpo_attribute13,
    cpo_attribute14                 = p_rec.cpo_attribute14,
    cpo_attribute15                 = p_rec.cpo_attribute15,
    cpo_attribute16                 = p_rec.cpo_attribute16,
    cpo_attribute17                 = p_rec.cpo_attribute17,
    cpo_attribute18                 = p_rec.cpo_attribute18,
    cpo_attribute19                 = p_rec.cpo_attribute19,
    cpo_attribute20                 = p_rec.cpo_attribute20,
    cpo_attribute21                 = p_rec.cpo_attribute21,
    cpo_attribute22                 = p_rec.cpo_attribute22,
    cpo_attribute23                 = p_rec.cpo_attribute23,
    cpo_attribute24                 = p_rec.cpo_attribute24,
    cpo_attribute25                 = p_rec.cpo_attribute25,
    cpo_attribute26                 = p_rec.cpo_attribute26,
    cpo_attribute27                 = p_rec.cpo_attribute27,
    cpo_attribute28                 = p_rec.cpo_attribute28,
    cpo_attribute29                 = p_rec.cpo_attribute29,
    cpo_attribute30                 = p_rec.cpo_attribute30,
    object_version_number           = p_rec.object_version_number
    where   popl_org_id = p_rec.popl_org_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_cpo_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_cpo_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_cpo_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_cpo_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_cpo_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_cpo_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_cpo_rku.after_update
      (
       p_popl_org_id              => p_rec.popl_org_id
      ,p_effective_start_date     => p_rec.effective_start_date
      ,p_effective_end_date       => p_rec.effective_end_date
      ,p_business_group_id        => p_rec.business_group_id
      ,p_cstmr_num                => p_rec.cstmr_num
      ,p_plcy_r_grp               => p_rec.plcy_r_grp
      ,p_pgm_id                   => p_rec.pgm_id
      ,p_pl_id                    => p_rec.pl_id
      ,p_organization_id          => p_rec.organization_id
      ,p_person_id                => p_rec.person_id
      ,p_cpo_attribute_category   => p_rec.cpo_attribute_category
      ,p_cpo_attribute1           => p_rec.cpo_attribute1
      ,p_cpo_attribute2           => p_rec.cpo_attribute2
      ,p_cpo_attribute3           => p_rec.cpo_attribute3
      ,p_cpo_attribute4           => p_rec.cpo_attribute4
      ,p_cpo_attribute5           => p_rec.cpo_attribute5
      ,p_cpo_attribute6           => p_rec.cpo_attribute6
      ,p_cpo_attribute7           => p_rec.cpo_attribute7
      ,p_cpo_attribute8           => p_rec.cpo_attribute8
      ,p_cpo_attribute9           => p_rec.cpo_attribute9
      ,p_cpo_attribute10          => p_rec.cpo_attribute10
      ,p_cpo_attribute11          => p_rec.cpo_attribute11
      ,p_cpo_attribute12          => p_rec.cpo_attribute12
      ,p_cpo_attribute13          => p_rec.cpo_attribute13
      ,p_cpo_attribute14          => p_rec.cpo_attribute14
      ,p_cpo_attribute15          => p_rec.cpo_attribute15
      ,p_cpo_attribute16          => p_rec.cpo_attribute16
      ,p_cpo_attribute17          => p_rec.cpo_attribute17
      ,p_cpo_attribute18          => p_rec.cpo_attribute18
      ,p_cpo_attribute19          => p_rec.cpo_attribute19
      ,p_cpo_attribute20          => p_rec.cpo_attribute20
      ,p_cpo_attribute21          => p_rec.cpo_attribute21
      ,p_cpo_attribute22          => p_rec.cpo_attribute22
      ,p_cpo_attribute23          => p_rec.cpo_attribute23
      ,p_cpo_attribute24          => p_rec.cpo_attribute24
      ,p_cpo_attribute25          => p_rec.cpo_attribute25
      ,p_cpo_attribute26          => p_rec.cpo_attribute26
      ,p_cpo_attribute27          => p_rec.cpo_attribute27
      ,p_cpo_attribute28          => p_rec.cpo_attribute28
      ,p_cpo_attribute29          => p_rec.cpo_attribute29
      ,p_cpo_attribute30          => p_rec.cpo_attribute30
      ,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_cpo_shd.g_old_rec.effective_start_date
      ,p_effective_end_date_o     => ben_cpo_shd.g_old_rec.effective_end_date
      ,p_business_group_id_o      => ben_cpo_shd.g_old_rec.business_group_id
      ,p_cstmr_num_o              => ben_cpo_shd.g_old_rec.cstmr_num
      ,p_plcy_r_grp_o             => ben_cpo_shd.g_old_rec.plcy_r_grp
      ,p_pgm_id_o                 => ben_cpo_shd.g_old_rec.pgm_id
      ,p_pl_id_o                  => ben_cpo_shd.g_old_rec.pl_id
      ,p_organization_id_o        => ben_cpo_shd.g_old_rec.organization_id
      ,p_person_id_o              => ben_cpo_shd.g_old_rec.person_id
      ,p_cpo_attribute_category_o => ben_cpo_shd.g_old_rec.cpo_attribute_category
      ,p_cpo_attribute1_o         => ben_cpo_shd.g_old_rec.cpo_attribute1
      ,p_cpo_attribute2_o         => ben_cpo_shd.g_old_rec.cpo_attribute2
      ,p_cpo_attribute3_o         => ben_cpo_shd.g_old_rec.cpo_attribute3
      ,p_cpo_attribute4_o         => ben_cpo_shd.g_old_rec.cpo_attribute4
      ,p_cpo_attribute5_o         => ben_cpo_shd.g_old_rec.cpo_attribute5
      ,p_cpo_attribute6_o         => ben_cpo_shd.g_old_rec.cpo_attribute6
      ,p_cpo_attribute7_o         => ben_cpo_shd.g_old_rec.cpo_attribute7
      ,p_cpo_attribute8_o         => ben_cpo_shd.g_old_rec.cpo_attribute8
      ,p_cpo_attribute9_o         => ben_cpo_shd.g_old_rec.cpo_attribute9
      ,p_cpo_attribute10_o        => ben_cpo_shd.g_old_rec.cpo_attribute10
      ,p_cpo_attribute11_o        => ben_cpo_shd.g_old_rec.cpo_attribute11
      ,p_cpo_attribute12_o        => ben_cpo_shd.g_old_rec.cpo_attribute12
      ,p_cpo_attribute13_o        => ben_cpo_shd.g_old_rec.cpo_attribute13
      ,p_cpo_attribute14_o        => ben_cpo_shd.g_old_rec.cpo_attribute14
      ,p_cpo_attribute15_o        => ben_cpo_shd.g_old_rec.cpo_attribute15
      ,p_cpo_attribute16_o        => ben_cpo_shd.g_old_rec.cpo_attribute16
      ,p_cpo_attribute17_o        => ben_cpo_shd.g_old_rec.cpo_attribute17
      ,p_cpo_attribute18_o        => ben_cpo_shd.g_old_rec.cpo_attribute18
      ,p_cpo_attribute19_o        => ben_cpo_shd.g_old_rec.cpo_attribute19
      ,p_cpo_attribute20_o        => ben_cpo_shd.g_old_rec.cpo_attribute20
      ,p_cpo_attribute21_o        => ben_cpo_shd.g_old_rec.cpo_attribute21
      ,p_cpo_attribute22_o        => ben_cpo_shd.g_old_rec.cpo_attribute22
      ,p_cpo_attribute23_o        => ben_cpo_shd.g_old_rec.cpo_attribute23
      ,p_cpo_attribute24_o        => ben_cpo_shd.g_old_rec.cpo_attribute24
      ,p_cpo_attribute25_o        => ben_cpo_shd.g_old_rec.cpo_attribute25
      ,p_cpo_attribute26_o        => ben_cpo_shd.g_old_rec.cpo_attribute26
      ,p_cpo_attribute27_o        => ben_cpo_shd.g_old_rec.cpo_attribute27
      ,p_cpo_attribute28_o        => ben_cpo_shd.g_old_rec.cpo_attribute28
      ,p_cpo_attribute29_o        => ben_cpo_shd.g_old_rec.cpo_attribute29
      ,p_cpo_attribute30_o        => ben_cpo_shd.g_old_rec.cpo_attribute30
      ,p_object_version_number_o  => ben_cpo_shd.g_old_rec.object_version_number
      );
Line: 513

End post_update;
Line: 763

  ben_cpo_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: 772

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

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

  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);