DBA Data[Home] [Help]

APPS.HR_ORI_DEL SQL Statements

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

Line: 51

Procedure delete_dml
  (p_rec in hr_ori_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'delete_dml';
Line: 64

  delete from hr_organization_information
  where org_information_id = p_rec.org_information_id;
Line: 80

End delete_dml;
Line: 114

Procedure pre_delete(p_rec in hr_ori_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'pre_delete';
Line: 122

End pre_delete;
Line: 156

Procedure post_delete(p_rec in hr_ori_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_delete';
Line: 164

    hr_ori_rkd.after_delete
      (p_org_information_id
      => p_rec.org_information_id
      ,p_org_information_context_o
      => hr_ori_shd.g_old_rec.org_information_context
      ,p_organization_id_o
      => hr_ori_shd.g_old_rec.organization_id
      ,p_org_information1_o
      => hr_ori_shd.g_old_rec.org_information1
      ,p_org_information10_o
      => hr_ori_shd.g_old_rec.org_information10
      ,p_org_information11_o
      => hr_ori_shd.g_old_rec.org_information11
      ,p_org_information12_o
      => hr_ori_shd.g_old_rec.org_information12
      ,p_org_information13_o
      => hr_ori_shd.g_old_rec.org_information13
      ,p_org_information14_o
      => hr_ori_shd.g_old_rec.org_information14
      ,p_org_information15_o
      => hr_ori_shd.g_old_rec.org_information15
      ,p_org_information16_o
      => hr_ori_shd.g_old_rec.org_information16
      ,p_org_information17_o
      => hr_ori_shd.g_old_rec.org_information17
      ,p_org_information18_o
      => hr_ori_shd.g_old_rec.org_information18
      ,p_org_information19_o
      => hr_ori_shd.g_old_rec.org_information19
      ,p_org_information2_o
      => hr_ori_shd.g_old_rec.org_information2
      ,p_org_information20_o
      => hr_ori_shd.g_old_rec.org_information20
      ,p_org_information3_o
      => hr_ori_shd.g_old_rec.org_information3
      ,p_org_information4_o
      => hr_ori_shd.g_old_rec.org_information4
      ,p_org_information5_o
      => hr_ori_shd.g_old_rec.org_information5
      ,p_org_information6_o
      => hr_ori_shd.g_old_rec.org_information6
      ,p_org_information7_o
      => hr_ori_shd.g_old_rec.org_information7
      ,p_org_information8_o
      => hr_ori_shd.g_old_rec.org_information8
      ,p_org_information9_o
      => hr_ori_shd.g_old_rec.org_information9
      ,p_request_id_o
      => hr_ori_shd.g_old_rec.request_id
      ,p_program_application_id_o
      => hr_ori_shd.g_old_rec.program_application_id
      ,p_program_id_o
      => hr_ori_shd.g_old_rec.program_id
      ,p_program_update_date_o
      => hr_ori_shd.g_old_rec.program_update_date
      ,p_attribute_category_o
      => hr_ori_shd.g_old_rec.attribute_category
      ,p_attribute1_o
      => hr_ori_shd.g_old_rec.attribute1
      ,p_attribute2_o
      => hr_ori_shd.g_old_rec.attribute2
      ,p_attribute3_o
      => hr_ori_shd.g_old_rec.attribute3
      ,p_attribute4_o
      => hr_ori_shd.g_old_rec.attribute4
      ,p_attribute5_o
      => hr_ori_shd.g_old_rec.attribute5
      ,p_attribute6_o
      => hr_ori_shd.g_old_rec.attribute6
      ,p_attribute7_o
      => hr_ori_shd.g_old_rec.attribute7
      ,p_attribute8_o
      => hr_ori_shd.g_old_rec.attribute8
      ,p_attribute9_o
      => hr_ori_shd.g_old_rec.attribute9
      ,p_attribute10_o
      => hr_ori_shd.g_old_rec.attribute10
      ,p_attribute11_o
      => hr_ori_shd.g_old_rec.attribute11
      ,p_attribute12_o
      => hr_ori_shd.g_old_rec.attribute12
      ,p_attribute13_o
      => hr_ori_shd.g_old_rec.attribute13
      ,p_attribute14_o
      => hr_ori_shd.g_old_rec.attribute14
      ,p_attribute15_o
      => hr_ori_shd.g_old_rec.attribute15
      ,p_attribute16_o
      => hr_ori_shd.g_old_rec.attribute16
      ,p_attribute17_o
      => hr_ori_shd.g_old_rec.attribute17
      ,p_attribute18_o
      => hr_ori_shd.g_old_rec.attribute18
      ,p_attribute19_o
      => hr_ori_shd.g_old_rec.attribute19
      ,p_attribute20_o
      => hr_ori_shd.g_old_rec.attribute20
      ,p_object_version_number_o
      => hr_ori_shd.g_old_rec.object_version_number
      );
Line: 276

End post_delete;
Line: 299

  hr_ori_bus.delete_validate(p_rec);
Line: 303

  hr_ori_del.pre_delete(p_rec);
Line: 307

  hr_ori_del.delete_dml(p_rec);
Line: 311

  hr_ori_del.post_delete(p_rec);