DBA Data[Home] [Help]

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

  insert into ben_ext_crit_prfl
  (	ext_crit_prfl_id,
	name,
	business_group_id,
	legislation_code,
	xcr_attribute_category,
	xcr_attribute1,
	xcr_attribute2,
	xcr_attribute3,
	xcr_attribute4,
	xcr_attribute5,
	xcr_attribute6,
	xcr_attribute7,
	xcr_attribute8,
	xcr_attribute9,
	xcr_attribute10,
	xcr_attribute11,
	xcr_attribute12,
	xcr_attribute13,
	xcr_attribute14,
	xcr_attribute15,
	xcr_attribute16,
	xcr_attribute17,
	xcr_attribute18,
	xcr_attribute19,
	xcr_attribute20,
	xcr_attribute21,
	xcr_attribute22,
	xcr_attribute23,
	xcr_attribute24,
	xcr_attribute25,
	xcr_attribute26,
	xcr_attribute27,
	xcr_attribute28,
	xcr_attribute29,
	xcr_attribute30,
	ext_global_flag,
        last_update_date,
        creation_date,
        last_updated_by,
        last_update_login,
        created_by,
	object_version_number
  )
  Values
  (	p_rec.ext_crit_prfl_id,
	p_rec.name,
	p_rec.business_group_id,
	p_rec.legislation_code,
	p_rec.xcr_attribute_category,
	p_rec.xcr_attribute1,
	p_rec.xcr_attribute2,
	p_rec.xcr_attribute3,
	p_rec.xcr_attribute4,
	p_rec.xcr_attribute5,
	p_rec.xcr_attribute6,
	p_rec.xcr_attribute7,
	p_rec.xcr_attribute8,
	p_rec.xcr_attribute9,
	p_rec.xcr_attribute10,
	p_rec.xcr_attribute11,
	p_rec.xcr_attribute12,
	p_rec.xcr_attribute13,
	p_rec.xcr_attribute14,
	p_rec.xcr_attribute15,
	p_rec.xcr_attribute16,
	p_rec.xcr_attribute17,
	p_rec.xcr_attribute18,
	p_rec.xcr_attribute19,
	p_rec.xcr_attribute20,
	p_rec.xcr_attribute21,
	p_rec.xcr_attribute22,
	p_rec.xcr_attribute23,
	p_rec.xcr_attribute24,
	p_rec.xcr_attribute25,
	p_rec.xcr_attribute26,
	p_rec.xcr_attribute27,
	p_rec.xcr_attribute28,
	p_rec.xcr_attribute29,
	p_rec.xcr_attribute30,
	p_rec.ext_global_flag,
        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: 231

End insert_dml;
Line: 270

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

  Cursor C_Sel1 is select ben_ext_crit_prfl_s.nextval from sys.dual;
Line: 287

End pre_insert;
Line: 321

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

    ben_xcr_rki.after_insert
      (
  p_ext_crit_prfl_id              =>p_rec.ext_crit_prfl_id
 ,p_name                          =>p_rec.name
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_legislation_code              =>p_rec.legislation_code
 ,p_xcr_attribute_category        =>p_rec.xcr_attribute_category
 ,p_xcr_attribute1                =>p_rec.xcr_attribute1
 ,p_xcr_attribute2                =>p_rec.xcr_attribute2
 ,p_xcr_attribute3                =>p_rec.xcr_attribute3
 ,p_xcr_attribute4                =>p_rec.xcr_attribute4
 ,p_xcr_attribute5                =>p_rec.xcr_attribute5
 ,p_xcr_attribute6                =>p_rec.xcr_attribute6
 ,p_xcr_attribute7                =>p_rec.xcr_attribute7
 ,p_xcr_attribute8                =>p_rec.xcr_attribute8
 ,p_xcr_attribute9                =>p_rec.xcr_attribute9
 ,p_xcr_attribute10               =>p_rec.xcr_attribute10
 ,p_xcr_attribute11               =>p_rec.xcr_attribute11
 ,p_xcr_attribute12               =>p_rec.xcr_attribute12
 ,p_xcr_attribute13               =>p_rec.xcr_attribute13
 ,p_xcr_attribute14               =>p_rec.xcr_attribute14
 ,p_xcr_attribute15               =>p_rec.xcr_attribute15
 ,p_xcr_attribute16               =>p_rec.xcr_attribute16
 ,p_xcr_attribute17               =>p_rec.xcr_attribute17
 ,p_xcr_attribute18               =>p_rec.xcr_attribute18
 ,p_xcr_attribute19               =>p_rec.xcr_attribute19
 ,p_xcr_attribute20               =>p_rec.xcr_attribute20
 ,p_xcr_attribute21               =>p_rec.xcr_attribute21
 ,p_xcr_attribute22               =>p_rec.xcr_attribute22
 ,p_xcr_attribute23               =>p_rec.xcr_attribute23
 ,p_xcr_attribute24               =>p_rec.xcr_attribute24
 ,p_xcr_attribute25               =>p_rec.xcr_attribute25
 ,p_xcr_attribute26               =>p_rec.xcr_attribute26
 ,p_xcr_attribute27               =>p_rec.xcr_attribute27
 ,p_xcr_attribute28               =>p_rec.xcr_attribute28
 ,p_xcr_attribute29               =>p_rec.xcr_attribute29
 ,p_xcr_attribute30               =>p_rec.xcr_attribute30
 ,p_ext_global_flag               =>p_rec.ext_global_flag
 ,p_object_version_number         =>p_rec.object_version_number
      );
Line: 390

End post_insert;
Line: 407

  ben_xcr_bus.insert_validate(p_rec);
Line: 411

  pre_insert(p_rec);
Line: 415

  insert_dml(p_rec);
Line: 419

  post_insert(p_rec);
Line: 463

  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_xcr_shd.g_rec_type;
Line: 519

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