DBA Data[Home] [Help]

APPS.PAY_SET_INS SQL Statements

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

Line: 50

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

  insert into pay_shadow_element_types
  (	element_type_id,
	template_id,
	classification_name,
	additional_entry_allowed_flag,
	adjustment_only_flag,
	closed_for_entry_flag,
	element_name,
	indirect_only_flag,
	multiple_entries_allowed_flag,
	multiply_value_flag,
	post_termination_rule,
	process_in_run_flag,
	relative_processing_priority,
	processing_type,
	standard_link_flag,
	input_currency_code,
	output_currency_code,
	benefit_classification_name,
	description,
	qualifying_age,
	qualifying_length_of_service,
	qualifying_units,
	reporting_name,
	attribute_category,
	attribute1,
	attribute2,
	attribute3,
	attribute4,
	attribute5,
	attribute6,
	attribute7,
	attribute8,
	attribute9,
	attribute10,
	attribute11,
	attribute12,
	attribute13,
	attribute14,
	attribute15,
	attribute16,
	attribute17,
	attribute18,
	attribute19,
	attribute20,
	element_information_category,
	element_information1,
	element_information2,
	element_information3,
	element_information4,
	element_information5,
	element_information6,
	element_information7,
	element_information8,
	element_information9,
	element_information10,
	element_information11,
	element_information12,
	element_information13,
	element_information14,
	element_information15,
	element_information16,
	element_information17,
	element_information18,
	element_information19,
	element_information20,
	third_party_pay_only_flag,
	skip_formula,
	payroll_formula_id,
	exclusion_rule_id,
        iterative_flag,
        iterative_priority,
        iterative_formula_name,
        process_mode,
        grossup_flag,
        advance_indicator,
        advance_payable,
        advance_deduction,
        process_advance_entry,
        proration_group,
        proration_formula,
        recalc_event_group,
        once_each_period_flag,
	object_version_number
  )
  Values
  (	p_rec.element_type_id,
	p_rec.template_id,
	p_rec.classification_name,
	p_rec.additional_entry_allowed_flag,
	p_rec.adjustment_only_flag,
	p_rec.closed_for_entry_flag,
	p_rec.element_name,
	p_rec.indirect_only_flag,
	p_rec.multiple_entries_allowed_flag,
	p_rec.multiply_value_flag,
	p_rec.post_termination_rule,
	p_rec.process_in_run_flag,
	p_rec.relative_processing_priority,
	p_rec.processing_type,
	p_rec.standard_link_flag,
	p_rec.input_currency_code,
	p_rec.output_currency_code,
	p_rec.benefit_classification_name,
	p_rec.description,
	p_rec.qualifying_age,
	p_rec.qualifying_length_of_service,
	p_rec.qualifying_units,
	p_rec.reporting_name,
	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,
	p_rec.element_information_category,
	p_rec.element_information1,
	p_rec.element_information2,
	p_rec.element_information3,
	p_rec.element_information4,
	p_rec.element_information5,
	p_rec.element_information6,
	p_rec.element_information7,
	p_rec.element_information8,
	p_rec.element_information9,
	p_rec.element_information10,
	p_rec.element_information11,
	p_rec.element_information12,
	p_rec.element_information13,
	p_rec.element_information14,
	p_rec.element_information15,
	p_rec.element_information16,
	p_rec.element_information17,
	p_rec.element_information18,
	p_rec.element_information19,
	p_rec.element_information20,
	p_rec.third_party_pay_only_flag,
	p_rec.skip_formula,
	p_rec.payroll_formula_id,
	p_rec.exclusion_rule_id,
        p_rec.iterative_flag,
        p_rec.iterative_priority,
        p_rec.iterative_formula_name,
        p_rec.process_mode,
        p_rec.grossup_flag,
        p_rec.advance_indicator,
        p_rec.advance_payable,
        p_rec.advance_deduction,
        p_rec.process_advance_entry,
        p_rec.proration_group,
        p_rec.proration_formula,
        p_rec.recalc_event_group,
        p_rec.once_each_period_flag,
	p_rec.object_version_number
  );
Line: 249

End insert_dml;
Line: 288

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

  Cursor C_Sel1 is select pay_shadow_element_types_s.nextval from sys.dual;
Line: 305

End pre_insert;
Line: 339

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

End post_insert;
Line: 364

  pay_set_bus.insert_validate(p_effective_date, p_rec);
Line: 368

  pre_insert(p_rec);
Line: 372

  insert_dml(p_rec);
Line: 376

  post_insert(p_rec);