DBA Data[Home] [Help]

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

  insert into ben_ext_crit_typ
  (	ext_crit_typ_id,
	crit_typ_cd,
	ext_crit_prfl_id,
	business_group_id,
	legislation_code,
        last_update_date,
        creation_date,
        last_updated_by,
        last_update_login,
        created_by,
	object_version_number,
        excld_flag
  )
  Values
  (	p_rec.ext_crit_typ_id,
	p_rec.crit_typ_cd,
	p_rec.ext_crit_prfl_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.excld_flag
  );
Line: 171

End insert_dml;
Line: 210

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

  select ben_ext_crit_typ_s.nextval
  from sys.dual;
Line: 227

End pre_insert;
Line: 261

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

    ben_xct_rki.after_insert
      (
  p_ext_crit_typ_id               =>p_rec.ext_crit_typ_id
 ,p_crit_typ_cd                   =>p_rec.crit_typ_cd
 ,p_ext_crit_prfl_id              =>p_rec.ext_crit_prfl_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_effective_date                =>p_effective_date
 ,p_excld_flag                    =>p_rec.excld_flag
      );
Line: 304

End post_insert;
Line: 322

  ben_xct_bus.insert_validate(p_rec
  ,p_effective_date);
Line: 327

  pre_insert(p_rec);
Line: 331

  insert_dml(p_rec);
Line: 335

  post_insert(
p_effective_date,p_rec);
Line: 350

  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_excld_flag                   in varchar2
  ) is
--
  l_rec	  ben_xct_shd.g_rec_type;
Line: 376

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