DBA Data[Home] [Help]

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

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

  delete from ben_ext_crit_prfl
  where ext_crit_prfl_id = p_rec.ext_crit_prfl_id;
Line: 114

End delete_dml;
Line: 148

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

End pre_delete;
Line: 190

Procedure post_delete(p_rec in ben_xcr_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_delete';
Line: 197

  delete_app_ownerships('EXT_CRIT_PRFL_ID', p_rec.ext_crit_prfl_id);
Line: 203

    ben_xcr_rkd.after_delete
      (
  p_ext_crit_prfl_id              =>p_rec.ext_crit_prfl_id
 ,p_name_o                        =>ben_xcr_shd.g_old_rec.name
 ,p_business_group_id_o           =>ben_xcr_shd.g_old_rec.business_group_id
 ,p_legislation_code_o            =>ben_xcr_shd.g_old_rec.legislation_code
 ,p_xcr_attribute_category_o      =>ben_xcr_shd.g_old_rec.xcr_attribute_category
 ,p_xcr_attribute1_o              =>ben_xcr_shd.g_old_rec.xcr_attribute1
 ,p_xcr_attribute2_o              =>ben_xcr_shd.g_old_rec.xcr_attribute2
 ,p_xcr_attribute3_o              =>ben_xcr_shd.g_old_rec.xcr_attribute3
 ,p_xcr_attribute4_o              =>ben_xcr_shd.g_old_rec.xcr_attribute4
 ,p_xcr_attribute5_o              =>ben_xcr_shd.g_old_rec.xcr_attribute5
 ,p_xcr_attribute6_o              =>ben_xcr_shd.g_old_rec.xcr_attribute6
 ,p_xcr_attribute7_o              =>ben_xcr_shd.g_old_rec.xcr_attribute7
 ,p_xcr_attribute8_o              =>ben_xcr_shd.g_old_rec.xcr_attribute8
 ,p_xcr_attribute9_o              =>ben_xcr_shd.g_old_rec.xcr_attribute9
 ,p_xcr_attribute10_o             =>ben_xcr_shd.g_old_rec.xcr_attribute10
 ,p_xcr_attribute11_o             =>ben_xcr_shd.g_old_rec.xcr_attribute11
 ,p_xcr_attribute12_o             =>ben_xcr_shd.g_old_rec.xcr_attribute12
 ,p_xcr_attribute13_o             =>ben_xcr_shd.g_old_rec.xcr_attribute13
 ,p_xcr_attribute14_o             =>ben_xcr_shd.g_old_rec.xcr_attribute14
 ,p_xcr_attribute15_o             =>ben_xcr_shd.g_old_rec.xcr_attribute15
 ,p_xcr_attribute16_o             =>ben_xcr_shd.g_old_rec.xcr_attribute16
 ,p_xcr_attribute17_o             =>ben_xcr_shd.g_old_rec.xcr_attribute17
 ,p_xcr_attribute18_o             =>ben_xcr_shd.g_old_rec.xcr_attribute18
 ,p_xcr_attribute19_o             =>ben_xcr_shd.g_old_rec.xcr_attribute19
 ,p_xcr_attribute20_o             =>ben_xcr_shd.g_old_rec.xcr_attribute20
 ,p_xcr_attribute21_o             =>ben_xcr_shd.g_old_rec.xcr_attribute21
 ,p_xcr_attribute22_o             =>ben_xcr_shd.g_old_rec.xcr_attribute22
 ,p_xcr_attribute23_o             =>ben_xcr_shd.g_old_rec.xcr_attribute23
 ,p_xcr_attribute24_o             =>ben_xcr_shd.g_old_rec.xcr_attribute24
 ,p_xcr_attribute25_o             =>ben_xcr_shd.g_old_rec.xcr_attribute25
 ,p_xcr_attribute26_o             =>ben_xcr_shd.g_old_rec.xcr_attribute26
 ,p_xcr_attribute27_o             =>ben_xcr_shd.g_old_rec.xcr_attribute27
 ,p_xcr_attribute28_o             =>ben_xcr_shd.g_old_rec.xcr_attribute28
 ,p_xcr_attribute29_o             =>ben_xcr_shd.g_old_rec.xcr_attribute29
 ,p_xcr_attribute30_o             =>ben_xcr_shd.g_old_rec.xcr_attribute30
 ,p_ext_global_flag_o             =>ben_xcr_shd.g_old_rec.ext_global_flag
 ,p_object_version_number_o       =>ben_xcr_shd.g_old_rec.object_version_number
      );
Line: 258

End post_delete;
Line: 283

  ben_xcr_bus.delete_validate(p_rec);
Line: 287

  pre_delete(p_rec);
Line: 291

  delete_dml(p_rec);
Line: 295

  post_delete(p_rec);