DBA Data[Home] [Help]

APPS.PAY_PWR_INS SQL Statements

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

Line: 53

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

  insert into pay_wci_rates
  (	rate_id,
	business_group_id,
	account_id,
	code,
	rate,
	description,
	comments,
	object_version_number
  )
  Values
  (	p_rec.rate_id,
	p_rec.business_group_id,
	p_rec.account_id,
	p_rec.code,
	p_rec.rate,
	p_rec.description,
	p_rec.comments,
	p_rec.object_version_number
  );
Line: 108

End insert_dml;
Line: 147

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

  Cursor C_Sel1 is select pay_wci_rates_s.nextval from sys.dual;
Line: 164

End pre_insert;
Line: 198

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

    pay_pwr_rki.after_insert
      (
  p_rate_id                       =>p_rec.rate_id
 ,p_business_group_id             =>p_rec.business_group_id
 ,p_account_id                    =>p_rec.account_id
 ,p_code                          =>p_rec.code
 ,p_rate                          =>p_rec.rate
 ,p_description                   =>p_rec.description
 ,p_comments                      =>p_rec.comments
 ,p_object_version_number         =>p_rec.object_version_number
      );
Line: 236

End post_insert;
Line: 253

  pay_pwr_bus.insert_validate(p_rec);
Line: 257

  pre_insert(p_rec);
Line: 261

  insert_dml(p_rec);
Line: 265

  post_insert(p_rec);