DBA Data[Home] [Help]

APPS.PER_PSS_INS SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 53

Procedure insert_dml(p_rec in out nocopy per_pss_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'insert_dml';
Line: 64

  insert into per_salary_surveys
  (	salary_survey_id,
	object_version_number,
	survey_name,
	survey_company_code,
	identifier,
--ras	currency_code,
	survey_type_code,
	base_region,
	attribute_category,
	attribute1,
	attribute2,
	attribute3,
	attribute4,
	attribute5,
	attribute6,
	attribute7,
	attribute8,
	attribute9,
	attribute10,
	attribute11,
	attribute12,
	attribute13,
	attribute14,
	attribute15,
	attribute16,
	attribute17,
	attribute18,
	attribute19,
	attribute20
  )
  Values
  (	p_rec.salary_survey_id,
	p_rec.object_version_number,
	p_rec.survey_name,
	p_rec.survey_company_code,
	p_rec.identifier,
--ras	p_rec.currency_code,
	p_rec.survey_type_code,
	p_rec.base_region,
	p_rec.attribute_category,
	p_rec.attribute1,
	p_rec.attribute2,
	p_rec.attribute3,
	p_rec.attribute4,
	p_rec.attribute5,
	p_rec.attribute6,
	p_rec.attribute7,
	p_rec.attribute8,
	p_rec.attribute9,
	p_rec.attribute10,
	p_rec.attribute11,
	p_rec.attribute12,
	p_rec.attribute13,
	p_rec.attribute14,
	p_rec.attribute15,
	p_rec.attribute16,
	p_rec.attribute17,
	p_rec.attribute18,
	p_rec.attribute19,
	p_rec.attribute20
  );
Line: 143

End insert_dml;
Line: 182

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

  Cursor C_Sel1 is select per_salary_surveys_s.nextval from sys.dual;
Line: 199

End pre_insert;
Line: 233

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

    per_pss_rki.after_insert
      (p_salary_survey_id
         => p_rec.salary_survey_id,
       p_object_version_number
         => p_rec.object_version_number,
       p_survey_name
         => p_rec.survey_name,
       p_survey_company_code
         => p_rec.survey_company_code,
       p_identifier
         => p_rec.identifier,
--ras       p_currency_code
--ras         => p_rec.currency_code,
       p_survey_type_code
         => p_rec.survey_type_code,
       p_base_region
         => p_rec.base_region,
       p_effective_date
           => p_effective_date,
       p_attribute_category
           => p_rec.attribute_category,
       p_attribute1
           => p_rec.attribute1,
       p_attribute2
           => p_rec.attribute2,
       p_attribute3
           => p_rec.attribute3,
       p_attribute4
           => p_rec.attribute4,
       p_attribute5
           => p_rec.attribute5,
       p_attribute6
           => p_rec.attribute6,
       p_attribute7
           => p_rec.attribute7,
       p_attribute8
           => p_rec.attribute8,
       p_attribute9
           => p_rec.attribute9,
       p_attribute10
           => p_rec.attribute10,
       p_attribute11
           => p_rec.attribute11,
       p_attribute12
           => p_rec.attribute12,
       p_attribute13
           => p_rec.attribute13,
       p_attribute14
           => p_rec.attribute14,
       p_attribute15
           => p_rec.attribute15,
       p_attribute16
           => p_rec.attribute16,
       p_attribute17
           => p_rec.attribute17,
       p_attribute18
           => p_rec.attribute18,
       p_attribute19
           => p_rec.attribute19,
       p_attribute20
           => p_rec.attribute20
      );
Line: 315

End post_insert;
Line: 333

  per_pss_bus.insert_validate(p_rec, p_effective_date);
Line: 337

  pre_insert(p_rec);
Line: 341

  insert_dml(p_rec);
Line: 345

  post_insert(p_rec,p_effective_date);