DBA Data[Home] [Help]

APPS.BEN_PRB_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_prb_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_pl_regy_bod_f
    set
        pl_regy_bod_id                  = p_rec.pl_regy_bod_id,
    business_group_id               = p_rec.business_group_id,
    pl_id                           = p_rec.pl_id,
    rptg_grp_id                     = p_rec.rptg_grp_id,
    organization_id                 = p_rec.organization_id,
    quald_dt                        = p_rec.quald_dt,
    quald_flag                      = p_rec.quald_flag,
    regy_pl_name                    = p_rec.regy_pl_name,
    aprvd_trmn_dt                   = p_rec.aprvd_trmn_dt,
    prb_attribute_category          = p_rec.prb_attribute_category,
    prb_attribute1                  = p_rec.prb_attribute1,
    prb_attribute2                  = p_rec.prb_attribute2,
    prb_attribute3                  = p_rec.prb_attribute3,
    prb_attribute4                  = p_rec.prb_attribute4,
    prb_attribute5                  = p_rec.prb_attribute5,
    prb_attribute6                  = p_rec.prb_attribute6,
    prb_attribute7                  = p_rec.prb_attribute7,
    prb_attribute8                  = p_rec.prb_attribute8,
    prb_attribute9                  = p_rec.prb_attribute9,
    prb_attribute10                 = p_rec.prb_attribute10,
    prb_attribute11                 = p_rec.prb_attribute11,
    prb_attribute12                 = p_rec.prb_attribute12,
    prb_attribute13                 = p_rec.prb_attribute13,
    prb_attribute14                 = p_rec.prb_attribute14,
    prb_attribute15                 = p_rec.prb_attribute15,
    prb_attribute16                 = p_rec.prb_attribute16,
    prb_attribute17                 = p_rec.prb_attribute17,
    prb_attribute18                 = p_rec.prb_attribute18,
    prb_attribute19                 = p_rec.prb_attribute19,
    prb_attribute20                 = p_rec.prb_attribute20,
    prb_attribute21                 = p_rec.prb_attribute21,
    prb_attribute22                 = p_rec.prb_attribute22,
    prb_attribute23                 = p_rec.prb_attribute23,
    prb_attribute24                 = p_rec.prb_attribute24,
    prb_attribute25                 = p_rec.prb_attribute25,
    prb_attribute26                 = p_rec.prb_attribute26,
    prb_attribute27                 = p_rec.prb_attribute27,
    prb_attribute28                 = p_rec.prb_attribute28,
    prb_attribute29                 = p_rec.prb_attribute29,
    prb_attribute30                 = p_rec.prb_attribute30,
    object_version_number           = p_rec.object_version_number
    where   pl_regy_bod_id = p_rec.pl_regy_bod_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 155

End dt_update_dml;
Line: 188

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

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

End update_dml;
Line: 252

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

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

      ben_prb_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: 294

    ben_prb_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: 302

End dt_pre_update;
Line: 337

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

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

End pre_update;
Line: 393

Procedure post_update
	(p_rec 			 in ben_prb_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_prb_rku.after_update
      (
      p_pl_regy_bod_id           =>p_rec.pl_regy_bod_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_pl_id                    =>p_rec.pl_id
     ,p_rptg_grp_id              =>p_rec.rptg_grp_id
     ,p_organization_id          =>p_rec.organization_id
     ,p_quald_dt                 =>p_rec.quald_dt
     ,p_quald_flag               =>p_rec.quald_flag
     ,p_regy_pl_name             =>p_rec.regy_pl_name
     ,p_aprvd_trmn_dt            =>p_rec.aprvd_trmn_dt
     ,p_prb_attribute_category   =>p_rec.prb_attribute_category
     ,p_prb_attribute1           =>p_rec.prb_attribute1
     ,p_prb_attribute2           =>p_rec.prb_attribute2
     ,p_prb_attribute3           =>p_rec.prb_attribute3
     ,p_prb_attribute4           =>p_rec.prb_attribute4
     ,p_prb_attribute5           =>p_rec.prb_attribute5
     ,p_prb_attribute6           =>p_rec.prb_attribute6
     ,p_prb_attribute7           =>p_rec.prb_attribute7
     ,p_prb_attribute8           =>p_rec.prb_attribute8
     ,p_prb_attribute9           =>p_rec.prb_attribute9
     ,p_prb_attribute10          =>p_rec.prb_attribute10
     ,p_prb_attribute11          =>p_rec.prb_attribute11
     ,p_prb_attribute12          =>p_rec.prb_attribute12
     ,p_prb_attribute13          =>p_rec.prb_attribute13
     ,p_prb_attribute14          =>p_rec.prb_attribute14
     ,p_prb_attribute15          =>p_rec.prb_attribute15
     ,p_prb_attribute16          =>p_rec.prb_attribute16
     ,p_prb_attribute17          =>p_rec.prb_attribute17
     ,p_prb_attribute18          =>p_rec.prb_attribute18
     ,p_prb_attribute19          =>p_rec.prb_attribute19
     ,p_prb_attribute20          =>p_rec.prb_attribute20
     ,p_prb_attribute21          =>p_rec.prb_attribute21
     ,p_prb_attribute22          =>p_rec.prb_attribute22
     ,p_prb_attribute23          =>p_rec.prb_attribute23
     ,p_prb_attribute24          =>p_rec.prb_attribute24
     ,p_prb_attribute25          =>p_rec.prb_attribute25
     ,p_prb_attribute26          =>p_rec.prb_attribute26
     ,p_prb_attribute27          =>p_rec.prb_attribute27
     ,p_prb_attribute28          =>p_rec.prb_attribute28
     ,p_prb_attribute29          =>p_rec.prb_attribute29
     ,p_prb_attribute30          =>p_rec.prb_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_prb_shd.g_old_rec.effective_start_date
     ,p_effective_end_date_o     =>ben_prb_shd.g_old_rec.effective_end_date
     ,p_business_group_id_o      =>ben_prb_shd.g_old_rec.business_group_id
     ,p_pl_id_o                  =>ben_prb_shd.g_old_rec.pl_id
     ,p_rptg_grp_id_o            =>ben_prb_shd.g_old_rec.rptg_grp_id
     ,p_organization_id_o        =>ben_prb_shd.g_old_rec.organization_id
     ,p_quald_dt_o               =>ben_prb_shd.g_old_rec.quald_dt
     ,p_quald_flag_o             =>ben_prb_shd.g_old_rec.quald_flag
     ,p_regy_pl_name_o           =>ben_prb_shd.g_old_rec.regy_pl_name
     ,p_aprvd_trmn_dt_o          =>ben_prb_shd.g_old_rec.aprvd_trmn_dt
     ,p_prb_attribute_category_o =>ben_prb_shd.g_old_rec.prb_attribute_category
     ,p_prb_attribute1_o         =>ben_prb_shd.g_old_rec.prb_attribute1
     ,p_prb_attribute2_o         =>ben_prb_shd.g_old_rec.prb_attribute2
     ,p_prb_attribute3_o         =>ben_prb_shd.g_old_rec.prb_attribute3
     ,p_prb_attribute4_o         =>ben_prb_shd.g_old_rec.prb_attribute4
     ,p_prb_attribute5_o         =>ben_prb_shd.g_old_rec.prb_attribute5
     ,p_prb_attribute6_o         =>ben_prb_shd.g_old_rec.prb_attribute6
     ,p_prb_attribute7_o         =>ben_prb_shd.g_old_rec.prb_attribute7
     ,p_prb_attribute8_o         =>ben_prb_shd.g_old_rec.prb_attribute8
     ,p_prb_attribute9_o         =>ben_prb_shd.g_old_rec.prb_attribute9
     ,p_prb_attribute10_o        =>ben_prb_shd.g_old_rec.prb_attribute10
     ,p_prb_attribute11_o        =>ben_prb_shd.g_old_rec.prb_attribute11
     ,p_prb_attribute12_o        =>ben_prb_shd.g_old_rec.prb_attribute12
     ,p_prb_attribute13_o        =>ben_prb_shd.g_old_rec.prb_attribute13
     ,p_prb_attribute14_o        =>ben_prb_shd.g_old_rec.prb_attribute14
     ,p_prb_attribute15_o        =>ben_prb_shd.g_old_rec.prb_attribute15
     ,p_prb_attribute16_o        =>ben_prb_shd.g_old_rec.prb_attribute16
     ,p_prb_attribute17_o        =>ben_prb_shd.g_old_rec.prb_attribute17
     ,p_prb_attribute18_o        =>ben_prb_shd.g_old_rec.prb_attribute18
     ,p_prb_attribute19_o        =>ben_prb_shd.g_old_rec.prb_attribute19
     ,p_prb_attribute20_o        =>ben_prb_shd.g_old_rec.prb_attribute20
     ,p_prb_attribute21_o        =>ben_prb_shd.g_old_rec.prb_attribute21
     ,p_prb_attribute22_o        =>ben_prb_shd.g_old_rec.prb_attribute22
     ,p_prb_attribute23_o        =>ben_prb_shd.g_old_rec.prb_attribute23
     ,p_prb_attribute24_o        =>ben_prb_shd.g_old_rec.prb_attribute24
     ,p_prb_attribute25_o        =>ben_prb_shd.g_old_rec.prb_attribute25
     ,p_prb_attribute26_o        =>ben_prb_shd.g_old_rec.prb_attribute26
     ,p_prb_attribute27_o        =>ben_prb_shd.g_old_rec.prb_attribute27
     ,p_prb_attribute28_o        =>ben_prb_shd.g_old_rec.prb_attribute28
     ,p_prb_attribute29_o        =>ben_prb_shd.g_old_rec.prb_attribute29
     ,p_prb_attribute30_o        =>ben_prb_shd.g_old_rec.prb_attribute30
     ,p_object_version_number_o  =>ben_prb_shd.g_old_rec.object_version_number
      );
Line: 516

End post_update;
Line: 773

  ben_prb_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: 782

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

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

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