DBA Data[Home] [Help]

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

  insert into ben_ext_crit_val
  (	ext_crit_val_id,
	val_1,
	val_2,
	ext_crit_typ_id,
	business_group_id,
	ext_crit_bg_id,
	legislation_code,
        last_update_date,
        creation_date,
        last_updated_by,
        last_update_login,
        created_by,
	object_version_number
  )
  Values
  (	p_rec.ext_crit_val_id,
	p_rec.val_1,
	p_rec.val_2,
	p_rec.ext_crit_typ_id,
	p_rec.business_group_id,
	p_rec.ext_crit_bg_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: 173

End insert_dml;
Line: 212

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

  select ben_ext_crit_val_s.nextval
  from sys.dual;
Line: 228

End pre_insert;
Line: 262

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

    ben_xcv_rki.after_insert
      (
  p_ext_crit_val_id               =>p_rec.ext_crit_val_id
 ,p_val_1                         =>p_rec.val_1
 ,p_val_2                         =>p_rec.val_2
 ,p_ext_crit_typ_id               =>p_rec.ext_crit_typ_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_ext_crit_bg_id                =>p_rec.ext_crit_bg_id
 ,p_legislation_code		  =>p_rec.legislation_code
 ,p_object_version_number         =>p_rec.object_version_number
      );
Line: 304

End post_insert;
Line: 322

  ben_xcv_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_rec);
Line: 351

  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_xcv_shd.g_rec_type;
Line: 378

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