DBA Data[Home] [Help]

APPS.BEN_PSL_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_psl_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_info_chg_cs_ler_f
    set
    per_info_chg_cs_ler_id          = p_rec.per_info_chg_cs_ler_id,
    name                            = p_rec.name,
    per_info_chg_cs_ler_rl          = p_rec.per_info_chg_cs_ler_rl,
    old_val                         = p_rec.old_val,
    new_val                         = p_rec.new_val,
    whatif_lbl_txt                  = p_rec.whatif_lbl_txt,
    rule_overrides_flag                  = p_rec.rule_overrides_flag,
    source_column                   = p_rec.source_column,
    source_table                    = p_rec.source_table,
    business_group_id               = p_rec.business_group_id,
    psl_attribute_category          = p_rec.psl_attribute_category,
    psl_attribute1                  = p_rec.psl_attribute1,
    psl_attribute2                  = p_rec.psl_attribute2,
    psl_attribute3                  = p_rec.psl_attribute3,
    psl_attribute4                  = p_rec.psl_attribute4,
    psl_attribute5                  = p_rec.psl_attribute5,
    psl_attribute6                  = p_rec.psl_attribute6,
    psl_attribute7                  = p_rec.psl_attribute7,
    psl_attribute8                  = p_rec.psl_attribute8,
    psl_attribute9                  = p_rec.psl_attribute9,
    psl_attribute10                 = p_rec.psl_attribute10,
    psl_attribute11                 = p_rec.psl_attribute11,
    psl_attribute12                 = p_rec.psl_attribute12,
    psl_attribute13                 = p_rec.psl_attribute13,
    psl_attribute14                 = p_rec.psl_attribute14,
    psl_attribute15                 = p_rec.psl_attribute15,
    psl_attribute16                 = p_rec.psl_attribute16,
    psl_attribute17                 = p_rec.psl_attribute17,
    psl_attribute18                 = p_rec.psl_attribute18,
    psl_attribute19                 = p_rec.psl_attribute19,
    psl_attribute20                 = p_rec.psl_attribute20,
    psl_attribute21                 = p_rec.psl_attribute21,
    psl_attribute22                 = p_rec.psl_attribute22,
    psl_attribute23                 = p_rec.psl_attribute23,
    psl_attribute24                 = p_rec.psl_attribute24,
    psl_attribute25                 = p_rec.psl_attribute25,
    psl_attribute26                 = p_rec.psl_attribute26,
    psl_attribute27                 = p_rec.psl_attribute27,
    psl_attribute28                 = p_rec.psl_attribute28,
    psl_attribute29                 = p_rec.psl_attribute29,
    psl_attribute30                 = p_rec.psl_attribute30,
    object_version_number           = p_rec.object_version_number
    where   per_info_chg_cs_ler_id = p_rec.per_info_chg_cs_ler_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 156

End dt_update_dml;
Line: 189

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

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

End update_dml;
Line: 253

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

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

      ben_psl_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: 295

    ben_psl_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: 303

End dt_pre_update;
Line: 338

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

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

End pre_update;
Line: 394

Procedure post_update
    (p_rec           in ben_psl_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: 411

    ben_psl_rku.after_update
      (
  p_per_info_chg_cs_ler_id        =>p_rec.per_info_chg_cs_ler_id
 ,p_name                          =>p_rec.name
 ,p_effective_start_date          =>p_rec.effective_start_date
 ,p_effective_end_date            =>p_rec.effective_end_date
 ,p_per_info_chg_cs_ler_rl        =>p_rec.per_info_chg_cs_ler_rl
 ,p_old_val                       =>p_rec.old_val
 ,p_new_val                       =>p_rec.new_val
 ,p_whatif_lbl_txt                =>p_rec.whatif_lbl_txt
 ,p_rule_overrides_flag                =>p_rec.rule_overrides_flag
 ,p_source_column                 =>p_rec.source_column
 ,p_source_table                  =>p_rec.source_table
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_psl_attribute_category        =>p_rec.psl_attribute_category
 ,p_psl_attribute1                =>p_rec.psl_attribute1
 ,p_psl_attribute2                =>p_rec.psl_attribute2
 ,p_psl_attribute3                =>p_rec.psl_attribute3
 ,p_psl_attribute4                =>p_rec.psl_attribute4
 ,p_psl_attribute5                =>p_rec.psl_attribute5
 ,p_psl_attribute6                =>p_rec.psl_attribute6
 ,p_psl_attribute7                =>p_rec.psl_attribute7
 ,p_psl_attribute8                =>p_rec.psl_attribute8
 ,p_psl_attribute9                =>p_rec.psl_attribute9
 ,p_psl_attribute10               =>p_rec.psl_attribute10
 ,p_psl_attribute11               =>p_rec.psl_attribute11
 ,p_psl_attribute12               =>p_rec.psl_attribute12
 ,p_psl_attribute13               =>p_rec.psl_attribute13
 ,p_psl_attribute14               =>p_rec.psl_attribute14
 ,p_psl_attribute15               =>p_rec.psl_attribute15
 ,p_psl_attribute16               =>p_rec.psl_attribute16
 ,p_psl_attribute17               =>p_rec.psl_attribute17
 ,p_psl_attribute18               =>p_rec.psl_attribute18
 ,p_psl_attribute19               =>p_rec.psl_attribute19
 ,p_psl_attribute20               =>p_rec.psl_attribute20
 ,p_psl_attribute21               =>p_rec.psl_attribute21
 ,p_psl_attribute22               =>p_rec.psl_attribute22
 ,p_psl_attribute23               =>p_rec.psl_attribute23
 ,p_psl_attribute24               =>p_rec.psl_attribute24
 ,p_psl_attribute25               =>p_rec.psl_attribute25
 ,p_psl_attribute26               =>p_rec.psl_attribute26
 ,p_psl_attribute27               =>p_rec.psl_attribute27
 ,p_psl_attribute28               =>p_rec.psl_attribute28
 ,p_psl_attribute29               =>p_rec.psl_attribute29
 ,p_psl_attribute30               =>p_rec.psl_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_psl_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o          =>ben_psl_shd.g_old_rec.effective_end_date
 ,p_per_info_chg_cs_ler_rl_o      =>ben_psl_shd.g_old_rec.per_info_chg_cs_ler_rl
 ,p_name_o                        =>ben_psl_shd.g_old_rec.name
 ,p_old_val_o                     =>ben_psl_shd.g_old_rec.old_val
 ,p_new_val_o                     =>ben_psl_shd.g_old_rec.new_val
 ,p_whatif_lbl_txt_o              =>ben_psl_shd.g_old_rec.whatif_lbl_txt
 ,p_rule_overrides_flag_o              =>ben_psl_shd.g_old_rec.rule_overrides_flag
 ,p_source_column_o               =>ben_psl_shd.g_old_rec.source_column
 ,p_source_table_o                =>ben_psl_shd.g_old_rec.source_table
 ,p_business_group_id_o           =>ben_psl_shd.g_old_rec.business_group_id
 ,p_psl_attribute_category_o      =>ben_psl_shd.g_old_rec.psl_attribute_category
 ,p_psl_attribute1_o              =>ben_psl_shd.g_old_rec.psl_attribute1
 ,p_psl_attribute2_o              =>ben_psl_shd.g_old_rec.psl_attribute2
 ,p_psl_attribute3_o              =>ben_psl_shd.g_old_rec.psl_attribute3
 ,p_psl_attribute4_o              =>ben_psl_shd.g_old_rec.psl_attribute4
 ,p_psl_attribute5_o              =>ben_psl_shd.g_old_rec.psl_attribute5
 ,p_psl_attribute6_o              =>ben_psl_shd.g_old_rec.psl_attribute6
 ,p_psl_attribute7_o              =>ben_psl_shd.g_old_rec.psl_attribute7
 ,p_psl_attribute8_o              =>ben_psl_shd.g_old_rec.psl_attribute8
 ,p_psl_attribute9_o              =>ben_psl_shd.g_old_rec.psl_attribute9
 ,p_psl_attribute10_o             =>ben_psl_shd.g_old_rec.psl_attribute10
 ,p_psl_attribute11_o             =>ben_psl_shd.g_old_rec.psl_attribute11
 ,p_psl_attribute12_o             =>ben_psl_shd.g_old_rec.psl_attribute12
 ,p_psl_attribute13_o             =>ben_psl_shd.g_old_rec.psl_attribute13
 ,p_psl_attribute14_o             =>ben_psl_shd.g_old_rec.psl_attribute14
 ,p_psl_attribute15_o             =>ben_psl_shd.g_old_rec.psl_attribute15
 ,p_psl_attribute16_o             =>ben_psl_shd.g_old_rec.psl_attribute16
 ,p_psl_attribute17_o             =>ben_psl_shd.g_old_rec.psl_attribute17
 ,p_psl_attribute18_o             =>ben_psl_shd.g_old_rec.psl_attribute18
 ,p_psl_attribute19_o             =>ben_psl_shd.g_old_rec.psl_attribute19
 ,p_psl_attribute20_o             =>ben_psl_shd.g_old_rec.psl_attribute20
 ,p_psl_attribute21_o             =>ben_psl_shd.g_old_rec.psl_attribute21
 ,p_psl_attribute22_o             =>ben_psl_shd.g_old_rec.psl_attribute22
 ,p_psl_attribute23_o             =>ben_psl_shd.g_old_rec.psl_attribute23
 ,p_psl_attribute24_o             =>ben_psl_shd.g_old_rec.psl_attribute24
 ,p_psl_attribute25_o             =>ben_psl_shd.g_old_rec.psl_attribute25
 ,p_psl_attribute26_o             =>ben_psl_shd.g_old_rec.psl_attribute26
 ,p_psl_attribute27_o             =>ben_psl_shd.g_old_rec.psl_attribute27
 ,p_psl_attribute28_o             =>ben_psl_shd.g_old_rec.psl_attribute28
 ,p_psl_attribute29_o             =>ben_psl_shd.g_old_rec.psl_attribute29
 ,p_psl_attribute30_o             =>ben_psl_shd.g_old_rec.psl_attribute30
 ,p_object_version_number_o       =>ben_psl_shd.g_old_rec.object_version_number
      );
Line: 520

End post_update;
Line: 782

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

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

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

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