DBA Data[Home] [Help]

APPS.BEN_XWC_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_xwc_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'insert_dml';
Line: 120

  insert into ben_ext_where_clause
  (	ext_where_clause_id,
	seq_num,
	oper_cd,
	val,
	and_or_cd,
	ext_data_elmt_id,
	cond_ext_data_elmt_id,
	ext_rcd_in_file_id,
	ext_data_elmt_in_rcd_id,
	business_group_id,
	legislation_code,
        last_update_date,
        creation_date,
        last_updated_by,
        last_update_login,
        created_by,
	object_version_number,
	cond_ext_data_elmt_in_rcd_id
  )
  Values
  (	p_rec.ext_where_clause_id,
	p_rec.seq_num,
	p_rec.oper_cd,
	p_rec.val,
	p_rec.and_or_cd,
	p_rec.ext_data_elmt_id,
	p_rec.cond_ext_data_elmt_id,
	p_rec.ext_rcd_in_file_id,
	p_rec.ext_data_elmt_in_rcd_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.cond_ext_data_elmt_in_rcd_id
  );
Line: 183

End insert_dml;
Line: 222

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

  Cursor C_Sel1 is select ben_ext_where_clause_s.nextval from sys.dual;
Line: 239

End pre_insert;
Line: 273

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

    ben_xwc_rki.after_insert
      (
  p_ext_where_clause_id           =>p_rec.ext_where_clause_id
 ,p_seq_num                       =>p_rec.seq_num
 ,p_oper_cd                       =>p_rec.oper_cd
 ,p_val                           =>p_rec.val
 ,p_and_or_cd                     =>p_rec.and_or_cd
 ,p_ext_data_elmt_id              =>p_rec.ext_data_elmt_id
 ,p_cond_ext_data_elmt_id         =>p_rec.cond_ext_data_elmt_id
 ,p_ext_rcd_in_file_id            =>p_rec.ext_rcd_in_file_id
 ,p_ext_data_elmt_in_rcd_id       =>p_rec.ext_data_elmt_in_rcd_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_cond_ext_data_elmt_in_rcd_id  =>p_rec.cond_ext_data_elmt_in_rcd_id
 ,p_effective_date                =>p_effective_date
      );
Line: 322

End post_insert;
Line: 340

  ben_xwc_bus.insert_validate(p_rec
  ,p_effective_date);
Line: 345

  pre_insert(p_rec);
Line: 349

  insert_dml(p_rec);
Line: 353

  post_insert(
p_effective_date,p_rec);
Line: 374

  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_cond_ext_data_elmt_in_rcd_id in number           default null
  ) is
--
  l_rec	  ben_xwc_shd.g_rec_type;
Line: 406

  p_last_update_date,
  p_creation_date   ,
  p_last_updated_by ,
  p_last_update_login,
  p_created_by,
  null,
  p_cond_ext_data_elmt_in_rcd_id
  );