DBA Data[Home] [Help]

APPS.BEN_RGR_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_rgr_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_rptg_grp_f
    set
        popl_rptg_grp_id                = p_rec.popl_rptg_grp_id,
    business_group_id               = p_rec.business_group_id,
    rptg_grp_id                     = p_rec.rptg_grp_id,
    pgm_id                          = p_rec.pgm_id,
    pl_id                           = p_rec.pl_id,
    ordr_num                        = p_rec.ordr_num,                       --iRec
    rgr_attribute_category          = p_rec.rgr_attribute_category,
    rgr_attribute1                  = p_rec.rgr_attribute1,
    rgr_attribute2                  = p_rec.rgr_attribute2,
    rgr_attribute3                  = p_rec.rgr_attribute3,
    rgr_attribute4                  = p_rec.rgr_attribute4,
    rgr_attribute5                  = p_rec.rgr_attribute5,
    rgr_attribute6                  = p_rec.rgr_attribute6,
    rgr_attribute7                  = p_rec.rgr_attribute7,
    rgr_attribute8                  = p_rec.rgr_attribute8,
    rgr_attribute9                  = p_rec.rgr_attribute9,
    rgr_attribute10                 = p_rec.rgr_attribute10,
    rgr_attribute11                 = p_rec.rgr_attribute11,
    rgr_attribute12                 = p_rec.rgr_attribute12,
    rgr_attribute13                 = p_rec.rgr_attribute13,
    rgr_attribute14                 = p_rec.rgr_attribute14,
    rgr_attribute15                 = p_rec.rgr_attribute15,
    rgr_attribute16                 = p_rec.rgr_attribute16,
    rgr_attribute17                 = p_rec.rgr_attribute17,
    rgr_attribute18                 = p_rec.rgr_attribute18,
    rgr_attribute19                 = p_rec.rgr_attribute19,
    rgr_attribute20                 = p_rec.rgr_attribute20,
    rgr_attribute21                 = p_rec.rgr_attribute21,
    rgr_attribute22                 = p_rec.rgr_attribute22,
    rgr_attribute23                 = p_rec.rgr_attribute23,
    rgr_attribute24                 = p_rec.rgr_attribute24,
    rgr_attribute25                 = p_rec.rgr_attribute25,
    rgr_attribute26                 = p_rec.rgr_attribute26,
    rgr_attribute27                 = p_rec.rgr_attribute27,
    rgr_attribute28                 = p_rec.rgr_attribute28,
    rgr_attribute29                 = p_rec.rgr_attribute29,
    rgr_attribute30                 = p_rec.rgr_attribute30,
    object_version_number           = p_rec.object_version_number
    where   popl_rptg_grp_id = p_rec.popl_rptg_grp_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 152

End dt_update_dml;
Line: 185

Procedure update_dml
	(p_rec 			 in out nocopy ben_rgr_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: 197

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

End update_dml;
Line: 249

Procedure dt_pre_update
	(p_rec 			 in out nocopy ben_rgr_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: 274

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

      ben_rgr_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: 291

    ben_rgr_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: 299

End dt_pre_update;
Line: 334

Procedure pre_update
	(p_rec 			 in out nocopy ben_rgr_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: 348

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

End pre_update;
Line: 390

Procedure post_update
	(p_rec 			 in ben_rgr_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: 407

    ben_rgr_rku.after_update
      (
  p_popl_rptg_grp_id              =>p_rec.popl_rptg_grp_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_rptg_grp_id                   =>p_rec.rptg_grp_id
 ,p_pgm_id                        =>p_rec.pgm_id
 ,p_pl_id                         =>p_rec.pl_id
 ,p_ordr_num                      =>p_rec.ordr_num                       --iRec
 ,p_rgr_attribute_category        =>p_rec.rgr_attribute_category
 ,p_rgr_attribute1                =>p_rec.rgr_attribute1
 ,p_rgr_attribute2                =>p_rec.rgr_attribute2
 ,p_rgr_attribute3                =>p_rec.rgr_attribute3
 ,p_rgr_attribute4                =>p_rec.rgr_attribute4
 ,p_rgr_attribute5                =>p_rec.rgr_attribute5
 ,p_rgr_attribute6                =>p_rec.rgr_attribute6
 ,p_rgr_attribute7                =>p_rec.rgr_attribute7
 ,p_rgr_attribute8                =>p_rec.rgr_attribute8
 ,p_rgr_attribute9                =>p_rec.rgr_attribute9
 ,p_rgr_attribute10               =>p_rec.rgr_attribute10
 ,p_rgr_attribute11               =>p_rec.rgr_attribute11
 ,p_rgr_attribute12               =>p_rec.rgr_attribute12
 ,p_rgr_attribute13               =>p_rec.rgr_attribute13
 ,p_rgr_attribute14               =>p_rec.rgr_attribute14
 ,p_rgr_attribute15               =>p_rec.rgr_attribute15
 ,p_rgr_attribute16               =>p_rec.rgr_attribute16
 ,p_rgr_attribute17               =>p_rec.rgr_attribute17
 ,p_rgr_attribute18               =>p_rec.rgr_attribute18
 ,p_rgr_attribute19               =>p_rec.rgr_attribute19
 ,p_rgr_attribute20               =>p_rec.rgr_attribute20
 ,p_rgr_attribute21               =>p_rec.rgr_attribute21
 ,p_rgr_attribute22               =>p_rec.rgr_attribute22
 ,p_rgr_attribute23               =>p_rec.rgr_attribute23
 ,p_rgr_attribute24               =>p_rec.rgr_attribute24
 ,p_rgr_attribute25               =>p_rec.rgr_attribute25
 ,p_rgr_attribute26               =>p_rec.rgr_attribute26
 ,p_rgr_attribute27               =>p_rec.rgr_attribute27
 ,p_rgr_attribute28               =>p_rec.rgr_attribute28
 ,p_rgr_attribute29               =>p_rec.rgr_attribute29
 ,p_rgr_attribute30               =>p_rec.rgr_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_rgr_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_rgr_shd.g_old_rec.effective_end_date
 ,p_business_group_id_o           =>ben_rgr_shd.g_old_rec.business_group_id
 ,p_rptg_grp_id_o                 =>ben_rgr_shd.g_old_rec.rptg_grp_id
 ,p_pgm_id_o                      =>ben_rgr_shd.g_old_rec.pgm_id
 ,p_pl_id_o                       =>ben_rgr_shd.g_old_rec.pl_id
 ,p_ordr_num_o                    =>ben_rgr_shd.g_old_rec.ordr_num                --iRec
 ,p_rgr_attribute_category_o      =>ben_rgr_shd.g_old_rec.rgr_attribute_category
 ,p_rgr_attribute1_o              =>ben_rgr_shd.g_old_rec.rgr_attribute1
 ,p_rgr_attribute2_o              =>ben_rgr_shd.g_old_rec.rgr_attribute2
 ,p_rgr_attribute3_o              =>ben_rgr_shd.g_old_rec.rgr_attribute3
 ,p_rgr_attribute4_o              =>ben_rgr_shd.g_old_rec.rgr_attribute4
 ,p_rgr_attribute5_o              =>ben_rgr_shd.g_old_rec.rgr_attribute5
 ,p_rgr_attribute6_o              =>ben_rgr_shd.g_old_rec.rgr_attribute6
 ,p_rgr_attribute7_o              =>ben_rgr_shd.g_old_rec.rgr_attribute7
 ,p_rgr_attribute8_o              =>ben_rgr_shd.g_old_rec.rgr_attribute8
 ,p_rgr_attribute9_o              =>ben_rgr_shd.g_old_rec.rgr_attribute9
 ,p_rgr_attribute10_o             =>ben_rgr_shd.g_old_rec.rgr_attribute10
 ,p_rgr_attribute11_o             =>ben_rgr_shd.g_old_rec.rgr_attribute11
 ,p_rgr_attribute12_o             =>ben_rgr_shd.g_old_rec.rgr_attribute12
 ,p_rgr_attribute13_o             =>ben_rgr_shd.g_old_rec.rgr_attribute13
 ,p_rgr_attribute14_o             =>ben_rgr_shd.g_old_rec.rgr_attribute14
 ,p_rgr_attribute15_o             =>ben_rgr_shd.g_old_rec.rgr_attribute15
 ,p_rgr_attribute16_o             =>ben_rgr_shd.g_old_rec.rgr_attribute16
 ,p_rgr_attribute17_o             =>ben_rgr_shd.g_old_rec.rgr_attribute17
 ,p_rgr_attribute18_o             =>ben_rgr_shd.g_old_rec.rgr_attribute18
 ,p_rgr_attribute19_o             =>ben_rgr_shd.g_old_rec.rgr_attribute19
 ,p_rgr_attribute20_o             =>ben_rgr_shd.g_old_rec.rgr_attribute20
 ,p_rgr_attribute21_o             =>ben_rgr_shd.g_old_rec.rgr_attribute21
 ,p_rgr_attribute22_o             =>ben_rgr_shd.g_old_rec.rgr_attribute22
 ,p_rgr_attribute23_o             =>ben_rgr_shd.g_old_rec.rgr_attribute23
 ,p_rgr_attribute24_o             =>ben_rgr_shd.g_old_rec.rgr_attribute24
 ,p_rgr_attribute25_o             =>ben_rgr_shd.g_old_rec.rgr_attribute25
 ,p_rgr_attribute26_o             =>ben_rgr_shd.g_old_rec.rgr_attribute26
 ,p_rgr_attribute27_o             =>ben_rgr_shd.g_old_rec.rgr_attribute27
 ,p_rgr_attribute28_o             =>ben_rgr_shd.g_old_rec.rgr_attribute28
 ,p_rgr_attribute29_o             =>ben_rgr_shd.g_old_rec.rgr_attribute29
 ,p_rgr_attribute30_o             =>ben_rgr_shd.g_old_rec.rgr_attribute30
 ,p_object_version_number_o       =>ben_rgr_shd.g_old_rec.object_version_number
      );
Line: 508

End post_update;
Line: 756

  ben_rgr_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: 765

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

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

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