DBA Data[Home] [Help]

APPS.HR_ORI_UPD SQL Statements

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

Line: 54

Procedure update_dml
  (p_rec in out nocopy hr_ori_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 70

  update hr_organization_information
    set
     org_information_id              = p_rec.org_information_id
    ,org_information_context         = p_rec.org_information_context
    ,organization_id                 = p_rec.organization_id
    ,org_information1                = p_rec.org_information1
    ,org_information10               = p_rec.org_information10
    ,org_information11               = p_rec.org_information11
    ,org_information12               = p_rec.org_information12
    ,org_information13               = p_rec.org_information13
    ,org_information14               = p_rec.org_information14
    ,org_information15               = p_rec.org_information15
    ,org_information16               = p_rec.org_information16
    ,org_information17               = p_rec.org_information17
    ,org_information18               = p_rec.org_information18
    ,org_information19               = p_rec.org_information19
    ,org_information2                = p_rec.org_information2
    ,org_information20               = p_rec.org_information20
    ,org_information3                = p_rec.org_information3
    ,org_information4                = p_rec.org_information4
    ,org_information5                = p_rec.org_information5
    ,org_information6                = p_rec.org_information6
    ,org_information7                = p_rec.org_information7
    ,org_information8                = p_rec.org_information8
    ,org_information9                = p_rec.org_information9
    ,attribute_category              = p_rec.attribute_category
    ,attribute1                      = p_rec.attribute1
    ,attribute2                      = p_rec.attribute2
    ,attribute3                      = p_rec.attribute3
    ,attribute4                      = p_rec.attribute4
    ,attribute5                      = p_rec.attribute5
    ,attribute6                      = p_rec.attribute6
    ,attribute7                      = p_rec.attribute7
    ,attribute8                      = p_rec.attribute8
    ,attribute9                      = p_rec.attribute9
    ,attribute10                     = p_rec.attribute10
    ,attribute11                     = p_rec.attribute11
    ,attribute12                     = p_rec.attribute12
    ,attribute13                     = p_rec.attribute13
    ,attribute14                     = p_rec.attribute14
    ,attribute15                     = p_rec.attribute15
    ,attribute16                     = p_rec.attribute16
    ,attribute17                     = p_rec.attribute17
    ,attribute18                     = p_rec.attribute18
    ,attribute19                     = p_rec.attribute19
    ,attribute20                     = p_rec.attribute20
    ,object_version_number           = p_rec.object_version_number
    where org_information_id = p_rec.org_information_id;
Line: 142

End update_dml;
Line: 176

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

End pre_update;
Line: 220

Procedure post_update
  (p_effective_date               in date
  ,p_rec                          in hr_ori_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 231

    hr_ori_rku.after_update
      (p_effective_date              => p_effective_date
      ,p_org_information_id
      => p_rec.org_information_id
      ,p_org_information_context
      => p_rec.org_information_context
      ,p_organization_id
      => p_rec.organization_id
      ,p_org_information1
      => p_rec.org_information1
      ,p_org_information10
      => p_rec.org_information10
      ,p_org_information11
      => p_rec.org_information11
      ,p_org_information12
      => p_rec.org_information12
      ,p_org_information13
      => p_rec.org_information13
      ,p_org_information14
      => p_rec.org_information14
      ,p_org_information15
      => p_rec.org_information15
      ,p_org_information16
      => p_rec.org_information16
      ,p_org_information17
      => p_rec.org_information17
      ,p_org_information18
      => p_rec.org_information18
      ,p_org_information19
      => p_rec.org_information19
      ,p_org_information2
      => p_rec.org_information2
      ,p_org_information20
      => p_rec.org_information20
      ,p_org_information3
      => p_rec.org_information3
      ,p_org_information4
      => p_rec.org_information4
      ,p_org_information5
      => p_rec.org_information5
      ,p_org_information6
      => p_rec.org_information6
      ,p_org_information7
      => p_rec.org_information7
      ,p_org_information8
      => p_rec.org_information8
      ,p_org_information9
      => p_rec.org_information9
      ,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
      ,p_object_version_number
      => p_rec.object_version_number
      ,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: 432

End post_update;
Line: 588

  If (p_rec.program_update_date = hr_api.g_date) then
    p_rec.program_update_date :=
    hr_ori_shd.g_old_rec.program_update_date;
Line: 706

  hr_ori_bus.update_validate
     (p_effective_date
     ,p_rec
     );
Line: 713

  hr_ori_upd.pre_update(p_rec);
Line: 717

  hr_ori_upd.update_dml(p_rec);
Line: 721

  hr_ori_upd.post_update
     (p_effective_date
     ,p_rec
     );