DBA Data[Home] [Help]

APPS.BEN_BNB_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_bnb_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_bnfts_bal_f
    set
        bnfts_bal_id                    = p_rec.bnfts_bal_id,
    name                            = p_rec.name,
    bnfts_bal_usg_cd                = p_rec.bnfts_bal_usg_cd,
    bnfts_bal_desc                  = p_rec.bnfts_bal_desc,
    uom                             = p_rec.uom,
    nnmntry_uom                     = p_rec.nnmntry_uom,
    business_group_id               = p_rec.business_group_id,
    bnb_attribute_category          = p_rec.bnb_attribute_category,
    bnb_attribute1                  = p_rec.bnb_attribute1,
    bnb_attribute2                  = p_rec.bnb_attribute2,
    bnb_attribute3                  = p_rec.bnb_attribute3,
    bnb_attribute4                  = p_rec.bnb_attribute4,
    bnb_attribute5                  = p_rec.bnb_attribute5,
    bnb_attribute6                  = p_rec.bnb_attribute6,
    bnb_attribute7                  = p_rec.bnb_attribute7,
    bnb_attribute8                  = p_rec.bnb_attribute8,
    bnb_attribute9                  = p_rec.bnb_attribute9,
    bnb_attribute10                 = p_rec.bnb_attribute10,
    bnb_attribute11                 = p_rec.bnb_attribute11,
    bnb_attribute12                 = p_rec.bnb_attribute12,
    bnb_attribute13                 = p_rec.bnb_attribute13,
    bnb_attribute14                 = p_rec.bnb_attribute14,
    bnb_attribute15                 = p_rec.bnb_attribute15,
    bnb_attribute16                 = p_rec.bnb_attribute16,
    bnb_attribute17                 = p_rec.bnb_attribute17,
    bnb_attribute18                 = p_rec.bnb_attribute18,
    bnb_attribute19                 = p_rec.bnb_attribute19,
    bnb_attribute20                 = p_rec.bnb_attribute20,
    bnb_attribute21                 = p_rec.bnb_attribute21,
    bnb_attribute22                 = p_rec.bnb_attribute22,
    bnb_attribute23                 = p_rec.bnb_attribute23,
    bnb_attribute24                 = p_rec.bnb_attribute24,
    bnb_attribute25                 = p_rec.bnb_attribute25,
    bnb_attribute26                 = p_rec.bnb_attribute26,
    bnb_attribute27                 = p_rec.bnb_attribute27,
    bnb_attribute28                 = p_rec.bnb_attribute28,
    bnb_attribute29                 = p_rec.bnb_attribute29,
    bnb_attribute30                 = p_rec.bnb_attribute30,
    object_version_number           = p_rec.object_version_number
    where   bnfts_bal_id = p_rec.bnfts_bal_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 153

End dt_update_dml;
Line: 186

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

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

End update_dml;
Line: 250

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

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

      ben_bnb_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: 292

    ben_bnb_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: 300

End dt_pre_update;
Line: 335

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

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

End pre_update;
Line: 391

Procedure post_update
	(p_rec 			 in ben_bnb_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: 408

    ben_bnb_rku.after_update
      (
  p_bnfts_bal_id                  =>p_rec.bnfts_bal_id
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_name                          =>p_rec.name
 ,p_bnfts_bal_usg_cd              =>p_rec.bnfts_bal_usg_cd
 ,p_bnfts_bal_desc                =>p_rec.bnfts_bal_desc
 ,p_uom                           =>p_rec.uom
 ,p_nnmntry_uom                   =>p_rec.nnmntry_uom
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_bnb_attribute_category        =>p_rec.bnb_attribute_category
 ,p_bnb_attribute1                =>p_rec.bnb_attribute1
 ,p_bnb_attribute2                =>p_rec.bnb_attribute2
 ,p_bnb_attribute3                =>p_rec.bnb_attribute3
 ,p_bnb_attribute4                =>p_rec.bnb_attribute4
 ,p_bnb_attribute5                =>p_rec.bnb_attribute5
 ,p_bnb_attribute6                =>p_rec.bnb_attribute6
 ,p_bnb_attribute7                =>p_rec.bnb_attribute7
 ,p_bnb_attribute8                =>p_rec.bnb_attribute8
 ,p_bnb_attribute9                =>p_rec.bnb_attribute9
 ,p_bnb_attribute10               =>p_rec.bnb_attribute10
 ,p_bnb_attribute11               =>p_rec.bnb_attribute11
 ,p_bnb_attribute12               =>p_rec.bnb_attribute12
 ,p_bnb_attribute13               =>p_rec.bnb_attribute13
 ,p_bnb_attribute14               =>p_rec.bnb_attribute14
 ,p_bnb_attribute15               =>p_rec.bnb_attribute15
 ,p_bnb_attribute16               =>p_rec.bnb_attribute16
 ,p_bnb_attribute17               =>p_rec.bnb_attribute17
 ,p_bnb_attribute18               =>p_rec.bnb_attribute18
 ,p_bnb_attribute19               =>p_rec.bnb_attribute19
 ,p_bnb_attribute20               =>p_rec.bnb_attribute20
 ,p_bnb_attribute21               =>p_rec.bnb_attribute21
 ,p_bnb_attribute22               =>p_rec.bnb_attribute22
 ,p_bnb_attribute23               =>p_rec.bnb_attribute23
 ,p_bnb_attribute24               =>p_rec.bnb_attribute24
 ,p_bnb_attribute25               =>p_rec.bnb_attribute25
 ,p_bnb_attribute26               =>p_rec.bnb_attribute26
 ,p_bnb_attribute27               =>p_rec.bnb_attribute27
 ,p_bnb_attribute28               =>p_rec.bnb_attribute28
 ,p_bnb_attribute29               =>p_rec.bnb_attribute29
 ,p_bnb_attribute30               =>p_rec.bnb_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_bnb_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_bnb_shd.g_old_rec.effective_end_date
 ,p_name_o                        =>ben_bnb_shd.g_old_rec.name
 ,p_bnfts_bal_usg_cd_o            =>ben_bnb_shd.g_old_rec.bnfts_bal_usg_cd
 ,p_bnfts_bal_desc_o              =>ben_bnb_shd.g_old_rec.bnfts_bal_desc
 ,p_uom_o                         =>ben_bnb_shd.g_old_rec.uom
 ,p_nnmntry_uom_o                 =>ben_bnb_shd.g_old_rec.nnmntry_uom
 ,p_business_group_id_o           =>ben_bnb_shd.g_old_rec.business_group_id
 ,p_bnb_attribute_category_o      =>ben_bnb_shd.g_old_rec.bnb_attribute_category
 ,p_bnb_attribute1_o              =>ben_bnb_shd.g_old_rec.bnb_attribute1
 ,p_bnb_attribute2_o              =>ben_bnb_shd.g_old_rec.bnb_attribute2
 ,p_bnb_attribute3_o              =>ben_bnb_shd.g_old_rec.bnb_attribute3
 ,p_bnb_attribute4_o              =>ben_bnb_shd.g_old_rec.bnb_attribute4
 ,p_bnb_attribute5_o              =>ben_bnb_shd.g_old_rec.bnb_attribute5
 ,p_bnb_attribute6_o              =>ben_bnb_shd.g_old_rec.bnb_attribute6
 ,p_bnb_attribute7_o              =>ben_bnb_shd.g_old_rec.bnb_attribute7
 ,p_bnb_attribute8_o              =>ben_bnb_shd.g_old_rec.bnb_attribute8
 ,p_bnb_attribute9_o              =>ben_bnb_shd.g_old_rec.bnb_attribute9
 ,p_bnb_attribute10_o             =>ben_bnb_shd.g_old_rec.bnb_attribute10
 ,p_bnb_attribute11_o             =>ben_bnb_shd.g_old_rec.bnb_attribute11
 ,p_bnb_attribute12_o             =>ben_bnb_shd.g_old_rec.bnb_attribute12
 ,p_bnb_attribute13_o             =>ben_bnb_shd.g_old_rec.bnb_attribute13
 ,p_bnb_attribute14_o             =>ben_bnb_shd.g_old_rec.bnb_attribute14
 ,p_bnb_attribute15_o             =>ben_bnb_shd.g_old_rec.bnb_attribute15
 ,p_bnb_attribute16_o             =>ben_bnb_shd.g_old_rec.bnb_attribute16
 ,p_bnb_attribute17_o             =>ben_bnb_shd.g_old_rec.bnb_attribute17
 ,p_bnb_attribute18_o             =>ben_bnb_shd.g_old_rec.bnb_attribute18
 ,p_bnb_attribute19_o             =>ben_bnb_shd.g_old_rec.bnb_attribute19
 ,p_bnb_attribute20_o             =>ben_bnb_shd.g_old_rec.bnb_attribute20
 ,p_bnb_attribute21_o             =>ben_bnb_shd.g_old_rec.bnb_attribute21
 ,p_bnb_attribute22_o             =>ben_bnb_shd.g_old_rec.bnb_attribute22
 ,p_bnb_attribute23_o             =>ben_bnb_shd.g_old_rec.bnb_attribute23
 ,p_bnb_attribute24_o             =>ben_bnb_shd.g_old_rec.bnb_attribute24
 ,p_bnb_attribute25_o             =>ben_bnb_shd.g_old_rec.bnb_attribute25
 ,p_bnb_attribute26_o             =>ben_bnb_shd.g_old_rec.bnb_attribute26
 ,p_bnb_attribute27_o             =>ben_bnb_shd.g_old_rec.bnb_attribute27
 ,p_bnb_attribute28_o             =>ben_bnb_shd.g_old_rec.bnb_attribute28
 ,p_bnb_attribute29_o             =>ben_bnb_shd.g_old_rec.bnb_attribute29
 ,p_bnb_attribute30_o             =>ben_bnb_shd.g_old_rec.bnb_attribute30
 ,p_object_version_number_o       =>ben_bnb_shd.g_old_rec.object_version_number
      );
Line: 511

End post_update;
Line: 762

  ben_bnb_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: 771

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

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

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