DBA Data[Home] [Help]

APPS.BEN_XRF_INS SQL Statements

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

Line: 24

  SELECT product_short_name
    FROM hr_owner_definitions
   WHERE session_id = p_session_id;
Line: 40

       INSERT INTO hr_application_ownerships
         (key_name
         ,key_value
         ,product_name
         )
       VALUES
         (p_pk_column
         ,fnd_number.number_to_canonical(p_pk_value)
         ,c1.product_short_name
         );
Line: 108

Procedure insert_dml(p_rec in out nocopy ben_xrf_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'insert_dml';
Line: 120

  insert into ben_ext_rcd_in_file
  (	ext_rcd_in_file_id,
	seq_num,
	sprs_cd,
      sort1_data_elmt_in_rcd_id,
      sort2_data_elmt_in_rcd_id,
      sort3_data_elmt_in_rcd_id,
      sort4_data_elmt_in_rcd_id,
	ext_rcd_id,
	ext_file_id,
	business_group_id,
	legislation_code,
        last_update_date,
        creation_date,
        last_updated_by,
        last_update_login,
        created_by,
	object_version_number,
	any_or_all_cd,
	hide_flag,
	rqd_flag ,
	chg_rcd_upd_flag
  )
  Values
  (	p_rec.ext_rcd_in_file_id,
	p_rec.seq_num,
	p_rec.sprs_cd,
	p_rec.sort1_data_elmt_in_rcd_id,
	p_rec.sort2_data_elmt_in_rcd_id,
	p_rec.sort3_data_elmt_in_rcd_id,
	p_rec.sort4_data_elmt_in_rcd_id,
	p_rec.ext_rcd_id,
	p_rec.ext_file_id,
	p_rec.business_group_id,
	p_rec.legislation_code,
        p_rec.last_update_date,
        p_rec.creation_date,
        p_rec.last_updated_by,
        p_rec.last_update_login,
        p_rec.created_by,
	p_rec.object_version_number,
	p_rec.any_or_all_cd,
	p_rec.hide_flag,
	p_rec.rqd_flag ,
	p_rec.chg_rcd_upd_flag
  );
Line: 189

End insert_dml;
Line: 228

Procedure pre_insert(p_rec  in out nocopy ben_xrf_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'pre_insert';
Line: 232

  Cursor C_Sel1 is select ben_ext_rcd_in_file_s.nextval from sys.dual;
Line: 245

End pre_insert;
Line: 279

Procedure post_insert(
p_effective_date in date,p_rec in ben_xrf_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_insert';
Line: 297

    ben_xrf_rki.after_insert
      (
  p_ext_rcd_in_file_id            =>p_rec.ext_rcd_in_file_id
 ,p_seq_num                       =>p_rec.seq_num
 ,p_sprs_cd                       =>p_rec.sprs_cd
 ,p_sort1_data_elmt_in_rcd_id     =>p_rec.sort1_data_elmt_in_rcd_id
 ,p_sort2_data_elmt_in_rcd_id     =>p_rec.sort2_data_elmt_in_rcd_id
 ,p_sort3_data_elmt_in_rcd_id     =>p_rec.sort3_data_elmt_in_rcd_id
 ,p_sort4_data_elmt_in_rcd_id     =>p_rec.sort4_data_elmt_in_rcd_id
 ,p_ext_rcd_id                    =>p_rec.ext_rcd_id
 ,p_ext_file_id                   =>p_rec.ext_file_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_legislation_code              =>p_rec.legislation_code
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_any_or_all_cd                 =>p_rec.any_or_all_cd
 ,p_hide_flag                     =>p_rec.hide_flag
 ,p_rqd_flag                      =>p_rec.rqd_flag
 ,p_chg_rcd_upd_flag              =>p_rec.chg_rcd_upd_flag
 ,p_effective_date                =>p_effective_date
      );
Line: 332

End post_insert;
Line: 350

  ben_xrf_bus.insert_validate(p_rec
  ,p_effective_date);
Line: 355

  pre_insert(p_rec);
Line: 359

  insert_dml(p_rec);
Line: 363

  post_insert(
p_effective_date,p_rec);
Line: 384

  p_last_update_date             in date             default null,
  p_creation_date                in date             default null,
  p_last_updated_by              in number           default null,
  p_last_update_login            in number           default null,
  p_created_by                   in number           default null,
  p_object_version_number        out nocopy number,
  p_any_or_all_cd                in varchar2         default null,
  p_hide_flag                    in varchar2,
  p_rqd_flag                     in varchar2 ,
  p_chg_rcd_upd_flag             in varchar2      default 'N'
  ) is
--
  l_rec	  ben_xrf_shd.g_rec_type;
Line: 419

  p_last_update_date,
  p_creation_date   ,
  p_last_updated_by ,
  p_last_update_login,
  p_created_by       ,
  null,
  p_any_or_all_cd,
  p_hide_flag,
  p_rqd_flag ,
  p_chg_rcd_upd_flag
  );