DBA Data[Home] [Help]

APPS.HXC_HRP_UPD SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 55

Procedure update_dml
  (p_rec in out nocopy hxc_hrp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 63

	l_proc := g_package||'update_dml';
Line: 74

  update hxc_recurring_periods
    set
     recurring_period_id             = p_rec.recurring_period_id
    ,name                            = p_rec.name
    ,start_date                      = p_rec.start_date
    ,end_date                        = p_rec.end_date
    ,period_type                     = p_rec.period_type
    ,duration_in_days                = p_rec.duration_in_days
    ,object_version_number           = p_rec.object_version_number
        ,last_updated_by		     = fnd_global.user_id
    ,last_update_date		     = sysdate
    ,last_update_login	             = fnd_global.login_id

    where recurring_period_id = p_rec.recurring_period_id;
Line: 114

End update_dml;
Line: 148

Procedure pre_update
  (p_rec in hxc_hrp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 156

	l_proc := g_package||'pre_update';
Line: 161

End pre_update;
Line: 195

Procedure post_update
  (p_effective_date               in date
  ,p_rec                          in hxc_hrp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 204

	l_proc := g_package||'post_update';
Line: 209

    hxc_hrp_rku.after_update
      (p_effective_date              => p_effective_date
      ,p_recurring_period_id
      => p_rec.recurring_period_id
      ,p_name
      => p_rec.name
      ,p_start_date
      => p_rec.start_date
      ,p_end_date
      => p_rec.end_date
      ,p_period_type
      => p_rec.period_type
      ,p_duration_in_days
      => p_rec.duration_in_days
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_name_o
      => hxc_hrp_shd.g_old_rec.name
      ,p_start_date_o
      => hxc_hrp_shd.g_old_rec.start_date
      ,p_end_date_o
      => hxc_hrp_shd.g_old_rec.end_date
      ,p_period_type_o
      => hxc_hrp_shd.g_old_rec.period_type
      ,p_duration_in_days_o
      => hxc_hrp_shd.g_old_rec.duration_in_days
      ,p_object_version_number_o
      => hxc_hrp_shd.g_old_rec.object_version_number
      );
Line: 252

End post_update;
Line: 362

  hxc_hrp_bus.update_validate
     (p_effective_date
     ,p_rec
     );
Line: 369

  hxc_hrp_upd.pre_update(p_rec);
Line: 373

  hxc_hrp_upd.update_dml(p_rec);
Line: 377

  hxc_hrp_upd.post_update
     (p_effective_date
     ,p_rec
     );