DBA Data[Home] [Help]

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

  insert into ben_ext_crit_cmbn
  (	ext_crit_cmbn_id,
	crit_typ_cd,
	oper_cd,
	val_1,
	val_2,
	ext_crit_val_id,
	business_group_id,
	legislation_code,
        last_update_date,
        creation_date,
        last_updated_by,
        last_update_login,
        created_by,
	object_version_number
  )
  Values
  (	p_rec.ext_crit_cmbn_id,
	p_rec.crit_typ_cd,
	p_rec.oper_cd,
	p_rec.val_1,
	p_rec.val_2,
	p_rec.ext_crit_val_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
  );
Line: 175

End insert_dml;
Line: 214

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

  Cursor C_Sel1 is select ben_ext_crit_cmbn_s.nextval from sys.dual;
Line: 231

End pre_insert;
Line: 265

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

    ben_xcc_rki.after_insert
      (
  p_ext_crit_cmbn_id              =>p_rec.ext_crit_cmbn_id
 ,p_crit_typ_cd                   =>p_rec.crit_typ_cd
 ,p_oper_cd                       =>p_rec.oper_cd
 ,p_val_1                         =>p_rec.val_1
 ,p_val_2                         =>p_rec.val_2
 ,p_ext_crit_val_id               =>p_rec.ext_crit_val_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
      );
Line: 310

End post_insert;
Line: 328

  ben_xcc_bus.insert_validate(p_rec
  ,p_effective_date);
Line: 333

  pre_insert(p_rec);
Line: 337

  insert_dml(p_rec);
Line: 341

  post_insert(
p_effective_date,p_rec);
Line: 359

  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
  ) is
--
  l_rec	  ben_xcc_shd.g_rec_type;
Line: 388

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