DBA Data[Home] [Help]

APPS.BEN_QIG_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_qig_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: 87

    update  ben_qua_in_gr_rt_f
    set
     qua_in_gr_rt_id                      = p_rec.qua_in_gr_rt_id
    ,quar_in_grade_cd                     = p_rec.quar_in_grade_cd
    ,excld_flag                           = p_rec.excld_flag
    ,business_group_id                    = p_rec.business_group_id
    ,vrbl_rt_prfl_id                      = p_rec.vrbl_rt_prfl_id
    ,object_version_number                = p_rec.object_version_number
    ,ordr_num                             = p_rec.ordr_num
    ,qig_attribute_category               = p_rec.qig_attribute_category
    ,qig_attribute1                       = p_rec.qig_attribute1
    ,qig_attribute2                       = p_rec.qig_attribute2
    ,qig_attribute3                       = p_rec.qig_attribute3
    ,qig_attribute4                       = p_rec.qig_attribute4
    ,qig_attribute5                       = p_rec.qig_attribute5
    ,qig_attribute6                       = p_rec.qig_attribute6
    ,qig_attribute7                       = p_rec.qig_attribute7
    ,qig_attribute8                       = p_rec.qig_attribute8
    ,qig_attribute9                       = p_rec.qig_attribute9
    ,qig_attribute10                      = p_rec.qig_attribute10
    ,qig_attribute11                      = p_rec.qig_attribute11
    ,qig_attribute12                      = p_rec.qig_attribute12
    ,qig_attribute13                      = p_rec.qig_attribute13
    ,qig_attribute14                      = p_rec.qig_attribute14
    ,qig_attribute15                      = p_rec.qig_attribute15
    ,qig_attribute16                      = p_rec.qig_attribute16
    ,qig_attribute17                      = p_rec.qig_attribute17
    ,qig_attribute18                      = p_rec.qig_attribute18
    ,qig_attribute19                      = p_rec.qig_attribute19
    ,qig_attribute20                      = p_rec.qig_attribute20
    ,qig_attribute21                      = p_rec.qig_attribute21
    ,qig_attribute22                      = p_rec.qig_attribute22
    ,qig_attribute23                      = p_rec.qig_attribute23
    ,qig_attribute24                      = p_rec.qig_attribute24
    ,qig_attribute25                      = p_rec.qig_attribute25
    ,qig_attribute26                      = p_rec.qig_attribute26
    ,qig_attribute27                      = p_rec.qig_attribute27
    ,qig_attribute28                      = p_rec.qig_attribute28
    ,qig_attribute29                      = p_rec.qig_attribute29
    ,qig_attribute30                      = p_rec.qig_attribute30
    where   qua_in_gr_rt_id = p_rec.qua_in_gr_rt_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_qig_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

  ben_qig_upd.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: 209

End update_dml;
Line: 254

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

    If (p_datetrack_mode = hr_api.g_update_override) then
      --
      -- As the datetrack mode is 'UPDATE_OVERRIDE' then we must
      -- delete any future rows
      --
      ben_qig_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: 296

    ben_qig_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: 305

End dt_pre_update;
Line: 339

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

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

End pre_update;
Line: 397

Procedure post_update
  (p_rec                   in ben_qig_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_qig_rku.after_update
      (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_qua_in_gr_rt_id
      => p_rec.qua_in_gr_rt_id
      ,p_effective_start_date
      => p_rec.effective_start_date
      ,p_effective_end_date
      => p_rec.effective_end_date
      ,p_quar_in_grade_cd
      => p_rec.quar_in_grade_cd
      ,p_excld_flag
      => p_rec.excld_flag
      ,p_business_group_id
      => p_rec.business_group_id
      ,p_vrbl_rt_prfl_id
      => p_rec.vrbl_rt_prfl_id
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_ordr_num
      => p_rec.ordr_num
      ,p_qig_attribute_category
      => p_rec.qig_attribute_category
      ,p_qig_attribute1
      => p_rec.qig_attribute1
      ,p_qig_attribute2
      => p_rec.qig_attribute2
      ,p_qig_attribute3
      => p_rec.qig_attribute3
      ,p_qig_attribute4
      => p_rec.qig_attribute4
      ,p_qig_attribute5
      => p_rec.qig_attribute5
      ,p_qig_attribute6
      => p_rec.qig_attribute6
      ,p_qig_attribute7
      => p_rec.qig_attribute7
      ,p_qig_attribute8
      => p_rec.qig_attribute8
      ,p_qig_attribute9
      => p_rec.qig_attribute9
      ,p_qig_attribute10
      => p_rec.qig_attribute10
      ,p_qig_attribute11
      => p_rec.qig_attribute11
      ,p_qig_attribute12
      => p_rec.qig_attribute12
      ,p_qig_attribute13
      => p_rec.qig_attribute13
      ,p_qig_attribute14
      => p_rec.qig_attribute14
      ,p_qig_attribute15
      => p_rec.qig_attribute15
      ,p_qig_attribute16
      => p_rec.qig_attribute16
      ,p_qig_attribute17
      => p_rec.qig_attribute17
      ,p_qig_attribute18
      => p_rec.qig_attribute18
      ,p_qig_attribute19
      => p_rec.qig_attribute19
      ,p_qig_attribute20
      => p_rec.qig_attribute20
      ,p_qig_attribute21
      => p_rec.qig_attribute21
      ,p_qig_attribute22
      => p_rec.qig_attribute22
      ,p_qig_attribute23
      => p_rec.qig_attribute23
      ,p_qig_attribute24
      => p_rec.qig_attribute24
      ,p_qig_attribute25
      => p_rec.qig_attribute25
      ,p_qig_attribute26
      => p_rec.qig_attribute26
      ,p_qig_attribute27
      => p_rec.qig_attribute27
      ,p_qig_attribute28
      => p_rec.qig_attribute28
      ,p_qig_attribute29
      => p_rec.qig_attribute29
      ,p_qig_attribute30
      => p_rec.qig_attribute30
      ,p_effective_start_date_o
      => ben_qig_shd.g_old_rec.effective_start_date
      ,p_effective_end_date_o
      => ben_qig_shd.g_old_rec.effective_end_date
      ,p_quar_in_grade_cd_o
      => ben_qig_shd.g_old_rec.quar_in_grade_cd
      ,p_excld_flag_o
      => ben_qig_shd.g_old_rec.excld_flag
      ,p_business_group_id_o
      => ben_qig_shd.g_old_rec.business_group_id
      ,p_vrbl_rt_prfl_id_o
      => ben_qig_shd.g_old_rec.vrbl_rt_prfl_id
      ,p_object_version_number_o
      => ben_qig_shd.g_old_rec.object_version_number
      ,p_ordr_num_o
      => ben_qig_shd.g_old_rec.ordr_num
      ,p_qig_attribute_category_o
      => ben_qig_shd.g_old_rec.qig_attribute_category
      ,p_qig_attribute1_o
      => ben_qig_shd.g_old_rec.qig_attribute1
      ,p_qig_attribute2_o
      => ben_qig_shd.g_old_rec.qig_attribute2
      ,p_qig_attribute3_o
      => ben_qig_shd.g_old_rec.qig_attribute3
      ,p_qig_attribute4_o
      => ben_qig_shd.g_old_rec.qig_attribute4
      ,p_qig_attribute5_o
      => ben_qig_shd.g_old_rec.qig_attribute5
      ,p_qig_attribute6_o
      => ben_qig_shd.g_old_rec.qig_attribute6
      ,p_qig_attribute7_o
      => ben_qig_shd.g_old_rec.qig_attribute7
      ,p_qig_attribute8_o
      => ben_qig_shd.g_old_rec.qig_attribute8
      ,p_qig_attribute9_o
      => ben_qig_shd.g_old_rec.qig_attribute9
      ,p_qig_attribute10_o
      => ben_qig_shd.g_old_rec.qig_attribute10
      ,p_qig_attribute11_o
      => ben_qig_shd.g_old_rec.qig_attribute11
      ,p_qig_attribute12_o
      => ben_qig_shd.g_old_rec.qig_attribute12
      ,p_qig_attribute13_o
      => ben_qig_shd.g_old_rec.qig_attribute13
      ,p_qig_attribute14_o
      => ben_qig_shd.g_old_rec.qig_attribute14
      ,p_qig_attribute15_o
      => ben_qig_shd.g_old_rec.qig_attribute15
      ,p_qig_attribute16_o
      => ben_qig_shd.g_old_rec.qig_attribute16
      ,p_qig_attribute17_o
      => ben_qig_shd.g_old_rec.qig_attribute17
      ,p_qig_attribute18_o
      => ben_qig_shd.g_old_rec.qig_attribute18
      ,p_qig_attribute19_o
      => ben_qig_shd.g_old_rec.qig_attribute19
      ,p_qig_attribute20_o
      => ben_qig_shd.g_old_rec.qig_attribute20
      ,p_qig_attribute21_o
      => ben_qig_shd.g_old_rec.qig_attribute21
      ,p_qig_attribute22_o
      => ben_qig_shd.g_old_rec.qig_attribute22
      ,p_qig_attribute23_o
      => ben_qig_shd.g_old_rec.qig_attribute23
      ,p_qig_attribute24_o
      => ben_qig_shd.g_old_rec.qig_attribute24
      ,p_qig_attribute25_o
      => ben_qig_shd.g_old_rec.qig_attribute25
      ,p_qig_attribute26_o
      => ben_qig_shd.g_old_rec.qig_attribute26
      ,p_qig_attribute27_o
      => ben_qig_shd.g_old_rec.qig_attribute27
      ,p_qig_attribute28_o
      => ben_qig_shd.g_old_rec.qig_attribute28
      ,p_qig_attribute29_o
      => ben_qig_shd.g_old_rec.qig_attribute29
      ,p_qig_attribute30_o
      => ben_qig_shd.g_old_rec.qig_attribute30
      );
Line: 591

End post_update;
Line: 833

  ben_qig_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: 846

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

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

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