DBA Data[Home] [Help]

APPS.HXC_HRP_DEL SQL Statements

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

Line: 52

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

	l_proc := g_package||'delete_dml';
Line: 68

  delete from hxc_recurring_periods
  where recurring_period_id = p_rec.recurring_period_id;
Line: 86

End delete_dml;
Line: 120

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

	  l_proc := g_package||'pre_delete';
Line: 131

End pre_delete;
Line: 165

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

	l_proc := g_package||'post_delete';
Line: 176

    hxc_hrp_rkd.after_delete
      (p_recurring_period_id
      => p_rec.recurring_period_id
      ,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: 206

End post_delete;
Line: 233

  hxc_hrp_bus.delete_validate(p_rec);
Line: 237

  hxc_hrp_del.pre_delete(p_rec);
Line: 241

  hxc_hrp_del.delete_dml(p_rec);
Line: 245

  hxc_hrp_del.post_delete(p_rec);