DBA Data[Home] [Help]

APPS.PE_POI_INS SQL Statements

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

Line: 47

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

  insert into per_position_extra_info
  (	position_extra_info_id,
	position_id,
	information_type,
	request_id,
	program_application_id,
	program_id,
	program_update_date,
	poei_attribute_category,
	poei_attribute1,
	poei_attribute2,
	poei_attribute3,
	poei_attribute4,
	poei_attribute5,
	poei_attribute6,
	poei_attribute7,
	poei_attribute8,
	poei_attribute9,
	poei_attribute10,
	poei_attribute11,
	poei_attribute12,
	poei_attribute13,
	poei_attribute14,
	poei_attribute15,
	poei_attribute16,
	poei_attribute17,
	poei_attribute18,
	poei_attribute19,
	poei_attribute20,
	poei_information_category,
	poei_information1,
	poei_information2,
	poei_information3,
	poei_information4,
	poei_information5,
	poei_information6,
	poei_information7,
	poei_information8,
	poei_information9,
	poei_information10,
	poei_information11,
	poei_information12,
	poei_information13,
	poei_information14,
	poei_information15,
	poei_information16,
	poei_information17,
	poei_information18,
	poei_information19,
	poei_information20,
	poei_information21,
	poei_information22,
	poei_information23,
	poei_information24,
	poei_information25,
	poei_information26,
	poei_information27,
	poei_information28,
	poei_information29,
	poei_information30,
	object_version_number
  )
  Values
  (	p_rec.position_extra_info_id,
	p_rec.position_id,
	p_rec.information_type,
	p_rec.request_id,
	p_rec.program_application_id,
	p_rec.program_id,
	p_rec.program_update_date,
	p_rec.poei_attribute_category,
	p_rec.poei_attribute1,
	p_rec.poei_attribute2,
	p_rec.poei_attribute3,
	p_rec.poei_attribute4,
	p_rec.poei_attribute5,
	p_rec.poei_attribute6,
	p_rec.poei_attribute7,
	p_rec.poei_attribute8,
	p_rec.poei_attribute9,
	p_rec.poei_attribute10,
	p_rec.poei_attribute11,
	p_rec.poei_attribute12,
	p_rec.poei_attribute13,
	p_rec.poei_attribute14,
	p_rec.poei_attribute15,
	p_rec.poei_attribute16,
	p_rec.poei_attribute17,
	p_rec.poei_attribute18,
	p_rec.poei_attribute19,
	p_rec.poei_attribute20,
	p_rec.poei_information_category,
	p_rec.poei_information1,
	p_rec.poei_information2,
	p_rec.poei_information3,
	p_rec.poei_information4,
	p_rec.poei_information5,
	p_rec.poei_information6,
	p_rec.poei_information7,
	p_rec.poei_information8,
	p_rec.poei_information9,
	p_rec.poei_information10,
	p_rec.poei_information11,
	p_rec.poei_information12,
	p_rec.poei_information13,
	p_rec.poei_information14,
	p_rec.poei_information15,
	p_rec.poei_information16,
	p_rec.poei_information17,
	p_rec.poei_information18,
	p_rec.poei_information19,
	p_rec.poei_information20,
	p_rec.poei_information21,
	p_rec.poei_information22,
	p_rec.poei_information23,
	p_rec.poei_information24,
	p_rec.poei_information25,
	p_rec.poei_information26,
	p_rec.poei_information27,
	p_rec.poei_information28,
	p_rec.poei_information29,
	p_rec.poei_information30,
	p_rec.object_version_number
  );
Line: 198

End insert_dml;
Line: 237

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

  Cursor C_Sel1 is select per_position_extra_info_s.nextval from sys.dual;
Line: 254

End pre_insert;
Line: 288

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

     pe_poi_rki.after_insert	(
	p_position_extra_info_id	=>	p_rec.position_extra_info_id	,
	p_position_id			=>	p_rec.position_id			,
	p_information_type		=>	p_rec.information_type		,
	p_request_id			=>	p_rec.request_id			,
	p_program_application_id	=>	p_rec.program_application_id	,
	p_program_id			=>	p_rec.program_id			,
	p_program_update_date		=>	p_rec.program_update_date	,
	p_poei_attribute_category	=>	p_rec.poei_attribute_category	,
	p_poei_attribute1		=>	p_rec.poei_attribute1		,
	p_poei_attribute2		=>	p_rec.poei_attribute2		,
	p_poei_attribute3		=>	p_rec.poei_attribute3		,
	p_poei_attribute4		=>	p_rec.poei_attribute4		,
	p_poei_attribute5		=>	p_rec.poei_attribute5		,
	p_poei_attribute6		=>	p_rec.poei_attribute6		,
	p_poei_attribute7		=>	p_rec.poei_attribute7		,
	p_poei_attribute8		=>	p_rec.poei_attribute8		,
	p_poei_attribute9		=>	p_rec.poei_attribute9		,
	p_poei_attribute10		=>	p_rec.poei_attribute10		,
	p_poei_attribute11		=>	p_rec.poei_attribute11		,
	p_poei_attribute12		=>	p_rec.poei_attribute12		,
	p_poei_attribute13		=>	p_rec.poei_attribute13		,
	p_poei_attribute14		=>	p_rec.poei_attribute14		,
	p_poei_attribute15		=>	p_rec.poei_attribute15		,
	p_poei_attribute16		=>	p_rec.poei_attribute16		,
	p_poei_attribute17		=>	p_rec.poei_attribute17		,
	p_poei_attribute18		=>	p_rec.poei_attribute18		,
	p_poei_attribute19		=>	p_rec.poei_attribute19		,
	p_poei_attribute20		=>	p_rec.poei_attribute20		,
	p_poei_information_category	=>	p_rec.poei_information_category	,
	p_poei_information1		=>	p_rec.poei_information1		,
	p_poei_information2		=>	p_rec.poei_information2		,
	p_poei_information3		=>	p_rec.poei_information3		,
	p_poei_information4		=>	p_rec.poei_information4		,
	p_poei_information5		=>	p_rec.poei_information5		,
	p_poei_information6		=>	p_rec.poei_information6		,
	p_poei_information7		=>	p_rec.poei_information7		,
	p_poei_information8		=>	p_rec.poei_information8		,
	p_poei_information9		=>	p_rec.poei_information9		,
	p_poei_information10		=>	p_rec.poei_information10	,
	p_poei_information11		=>	p_rec.poei_information11	,
	p_poei_information12		=>	p_rec.poei_information12	,
	p_poei_information13		=>	p_rec.poei_information13	,
	p_poei_information14		=>	p_rec.poei_information14	,
	p_poei_information15		=>	p_rec.poei_information15	,
	p_poei_information16		=>	p_rec.poei_information16	,
	p_poei_information17		=>	p_rec.poei_information17	,
	p_poei_information18		=>	p_rec.poei_information18	,
	p_poei_information19		=>	p_rec.poei_information19	,
	p_poei_information20		=>	p_rec.poei_information20	,
	p_poei_information21		=>	p_rec.poei_information21	,
	p_poei_information22		=>	p_rec.poei_information22	,
	p_poei_information23		=>	p_rec.poei_information23	,
	p_poei_information24		=>	p_rec.poei_information24	,
	p_poei_information25		=>	p_rec.poei_information25	,
	p_poei_information26		=>	p_rec.poei_information26	,
	p_poei_information27		=>	p_rec.poei_information27	,
	p_poei_information28		=>	p_rec.poei_information28	,
	p_poei_information29		=>	p_rec.poei_information29	,
	p_poei_information30		=>	p_rec.poei_information30
	);
Line: 369

End post_insert;
Line: 396

  pe_poi_bus.insert_validate(p_rec);
Line: 400

  pre_insert(p_rec);
Line: 404

  insert_dml(p_rec);
Line: 408

  post_insert(p_rec);
Line: 437

  p_program_update_date          in date             default null,
  p_poei_attribute_category      in varchar2         default null,
  p_poei_attribute1              in varchar2         default null,
  p_poei_attribute2              in varchar2         default null,
  p_poei_attribute3              in varchar2         default null,
  p_poei_attribute4              in varchar2         default null,
  p_poei_attribute5              in varchar2         default null,
  p_poei_attribute6              in varchar2         default null,
  p_poei_attribute7              in varchar2         default null,
  p_poei_attribute8              in varchar2         default null,
  p_poei_attribute9              in varchar2         default null,
  p_poei_attribute10             in varchar2         default null,
  p_poei_attribute11             in varchar2         default null,
  p_poei_attribute12             in varchar2         default null,
  p_poei_attribute13             in varchar2         default null,
  p_poei_attribute14             in varchar2         default null,
  p_poei_attribute15             in varchar2         default null,
  p_poei_attribute16             in varchar2         default null,
  p_poei_attribute17             in varchar2         default null,
  p_poei_attribute18             in varchar2         default null,
  p_poei_attribute19             in varchar2         default null,
  p_poei_attribute20             in varchar2         default null,
  p_poei_information_category    in varchar2         default null,
  p_poei_information1            in varchar2         default null,
  p_poei_information2            in varchar2         default null,
  p_poei_information3            in varchar2         default null,
  p_poei_information4            in varchar2         default null,
  p_poei_information5            in varchar2         default null,
  p_poei_information6            in varchar2         default null,
  p_poei_information7            in varchar2         default null,
  p_poei_information8            in varchar2         default null,
  p_poei_information9            in varchar2         default null,
  p_poei_information10           in varchar2         default null,
  p_poei_information11           in varchar2         default null,
  p_poei_information12           in varchar2         default null,
  p_poei_information13           in varchar2         default null,
  p_poei_information14           in varchar2         default null,
  p_poei_information15           in varchar2         default null,
  p_poei_information16           in varchar2         default null,
  p_poei_information17           in varchar2         default null,
  p_poei_information18           in varchar2         default null,
  p_poei_information19           in varchar2         default null,
  p_poei_information20           in varchar2         default null,
  p_poei_information21           in varchar2         default null,
  p_poei_information22           in varchar2         default null,
  p_poei_information23           in varchar2         default null,
  p_poei_information24           in varchar2         default null,
  p_poei_information25           in varchar2         default null,
  p_poei_information26           in varchar2         default null,
  p_poei_information27           in varchar2         default null,
  p_poei_information28           in varchar2         default null,
  p_poei_information29           in varchar2         default null,
  p_poei_information30           in varchar2         default null,
  p_object_version_number        out nocopy number,
  p_validate                     in boolean   default false
  ) is
--
  l_rec	  pe_poi_shd.g_rec_type;
Line: 512

  p_program_update_date,
  p_poei_attribute_category,
  p_poei_attribute1,
  p_poei_attribute2,
  p_poei_attribute3,
  p_poei_attribute4,
  p_poei_attribute5,
  p_poei_attribute6,
  p_poei_attribute7,
  p_poei_attribute8,
  p_poei_attribute9,
  p_poei_attribute10,
  p_poei_attribute11,
  p_poei_attribute12,
  p_poei_attribute13,
  p_poei_attribute14,
  p_poei_attribute15,
  p_poei_attribute16,
  p_poei_attribute17,
  p_poei_attribute18,
  p_poei_attribute19,
  p_poei_attribute20,
  p_poei_information_category,
  p_poei_information1,
  p_poei_information2,
  p_poei_information3,
  p_poei_information4,
  p_poei_information5,
  p_poei_information6,
  p_poei_information7,
  p_poei_information8,
  p_poei_information9,
  p_poei_information10,
  p_poei_information11,
  p_poei_information12,
  p_poei_information13,
  p_poei_information14,
  p_poei_information15,
  p_poei_information16,
  p_poei_information17,
  p_poei_information18,
  p_poei_information19,
  p_poei_information20,
  p_poei_information21,
  p_poei_information22,
  p_poei_information23,
  p_poei_information24,
  p_poei_information25,
  p_poei_information26,
  p_poei_information27,
  p_poei_information28,
  p_poei_information29,
  p_poei_information30,
  null
  );