DBA Data[Home] [Help]

APPS.BEN_XRC_DEL SQL Statements

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

Line: 20

PROCEDURE delete_app_ownerships(p_pk_column  IN  varchar2
                               ,p_pk_value   IN  varchar2) IS
--
BEGIN
  --
  IF (hr_startup_data_api_support.return_startup_mode
                           IN ('STARTUP','GENERIC')) THEN
     --
     DELETE FROM hr_application_ownerships
      WHERE key_name = p_pk_column
        AND key_value = p_pk_value;
Line: 33

END delete_app_ownerships;
Line: 38

PROCEDURE delete_app_ownerships(p_pk_column IN varchar2
                               ,p_pk_value  IN number) IS
--
BEGIN
  delete_app_ownerships(p_pk_column, to_char(p_pk_value));
Line: 43

END delete_app_ownerships;
Line: 88

Procedure delete_dml(p_rec in ben_xrc_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'delete_dml';
Line: 99

  delete from ben_ext_rcd
  where ext_rcd_id = p_rec.ext_rcd_id;
Line: 115

End delete_dml;
Line: 149

Procedure pre_delete(p_rec in ben_xrc_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'pre_delete';
Line: 157

End pre_delete;
Line: 191

Procedure post_delete(
p_effective_date in date,p_rec in ben_xrc_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_delete';
Line: 202

  delete_app_ownerships('EXT_RCD_ID', p_rec.ext_rcd_id);
Line: 209

    ben_xrc_rkd.after_delete
      (
  p_ext_rcd_id                    =>p_rec.ext_rcd_id
 ,p_name_o                        =>ben_xrc_shd.g_old_rec.name
 ,p_xml_tag_name_o                  =>ben_xrc_shd.g_old_rec.xml_tag_name
 ,p_rcd_type_cd_o                 =>ben_xrc_shd.g_old_rec.rcd_type_cd
 ,p_low_lvl_cd_o                  =>ben_xrc_shd.g_old_rec.low_lvl_cd
 ,p_business_group_id_o           =>ben_xrc_shd.g_old_rec.business_group_id
 ,p_legislation_code_o            =>ben_xrc_shd.g_old_rec.legislation_code
 ,p_xrc_attribute_category_o      =>ben_xrc_shd.g_old_rec.xrc_attribute_category
 ,p_xrc_attribute1_o              =>ben_xrc_shd.g_old_rec.xrc_attribute1
 ,p_xrc_attribute2_o              =>ben_xrc_shd.g_old_rec.xrc_attribute2
 ,p_xrc_attribute3_o              =>ben_xrc_shd.g_old_rec.xrc_attribute3
 ,p_xrc_attribute4_o              =>ben_xrc_shd.g_old_rec.xrc_attribute4
 ,p_xrc_attribute5_o              =>ben_xrc_shd.g_old_rec.xrc_attribute5
 ,p_xrc_attribute6_o              =>ben_xrc_shd.g_old_rec.xrc_attribute6
 ,p_xrc_attribute7_o              =>ben_xrc_shd.g_old_rec.xrc_attribute7
 ,p_xrc_attribute8_o              =>ben_xrc_shd.g_old_rec.xrc_attribute8
 ,p_xrc_attribute9_o              =>ben_xrc_shd.g_old_rec.xrc_attribute9
 ,p_xrc_attribute10_o             =>ben_xrc_shd.g_old_rec.xrc_attribute10
 ,p_xrc_attribute11_o             =>ben_xrc_shd.g_old_rec.xrc_attribute11
 ,p_xrc_attribute12_o             =>ben_xrc_shd.g_old_rec.xrc_attribute12
 ,p_xrc_attribute13_o             =>ben_xrc_shd.g_old_rec.xrc_attribute13
 ,p_xrc_attribute14_o             =>ben_xrc_shd.g_old_rec.xrc_attribute14
 ,p_xrc_attribute15_o             =>ben_xrc_shd.g_old_rec.xrc_attribute15
 ,p_xrc_attribute16_o             =>ben_xrc_shd.g_old_rec.xrc_attribute16
 ,p_xrc_attribute17_o             =>ben_xrc_shd.g_old_rec.xrc_attribute17
 ,p_xrc_attribute18_o             =>ben_xrc_shd.g_old_rec.xrc_attribute18
 ,p_xrc_attribute19_o             =>ben_xrc_shd.g_old_rec.xrc_attribute19
 ,p_xrc_attribute20_o             =>ben_xrc_shd.g_old_rec.xrc_attribute20
 ,p_xrc_attribute21_o             =>ben_xrc_shd.g_old_rec.xrc_attribute21
 ,p_xrc_attribute22_o             =>ben_xrc_shd.g_old_rec.xrc_attribute22
 ,p_xrc_attribute23_o             =>ben_xrc_shd.g_old_rec.xrc_attribute23
 ,p_xrc_attribute24_o             =>ben_xrc_shd.g_old_rec.xrc_attribute24
 ,p_xrc_attribute25_o             =>ben_xrc_shd.g_old_rec.xrc_attribute25
 ,p_xrc_attribute26_o             =>ben_xrc_shd.g_old_rec.xrc_attribute26
 ,p_xrc_attribute27_o             =>ben_xrc_shd.g_old_rec.xrc_attribute27
 ,p_xrc_attribute28_o             =>ben_xrc_shd.g_old_rec.xrc_attribute28
 ,p_xrc_attribute29_o             =>ben_xrc_shd.g_old_rec.xrc_attribute29
 ,p_xrc_attribute30_o             =>ben_xrc_shd.g_old_rec.xrc_attribute30
 ,p_object_version_number_o       =>ben_xrc_shd.g_old_rec.object_version_number
      );
Line: 266

End post_delete;
Line: 292

  ben_xrc_bus.delete_validate(p_rec
  ,p_effective_date);
Line: 297

  pre_delete(p_rec);
Line: 301

  delete_dml(p_rec);
Line: 305

  post_delete(
p_effective_date,p_rec);