DBA Data[Home] [Help]

APPS.PER_KAD_UPD SQL Statements

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

Line: 54

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

  update per_addresses
  set
  address_id                        = p_rec.address_id,
-- 70.2 change a start.
  date_from                         = p_rec.date_from,
-- 70.2 change a end.
  address_line1                     = p_rec.address_line1,
  address_line2                     = p_rec.address_line2,
  address_line3                     = p_rec.address_line3,
  address_type                      = p_rec.address_type,
  comments                          = p_rec.comments,
  country                           = p_rec.country,
  date_to                           = p_rec.date_to,
  postal_code                       = p_rec.postal_code,
  region_1                          = p_rec.region_1,
  region_2                          = p_rec.region_2,
  region_3                          = p_rec.region_3,
  telephone_number_1                = p_rec.telephone_number_1,
  telephone_number_2                = p_rec.telephone_number_2,
  telephone_number_3                = p_rec.telephone_number_3,
  town_or_city                      = p_rec.town_or_city,
  request_id                        = p_rec.request_id,
  program_application_id            = p_rec.program_application_id,
  program_id                        = p_rec.program_id,
  program_update_date               = p_rec.program_update_date,
  addr_attribute_category           = p_rec.addr_attribute_category,
  addr_attribute1                   = p_rec.addr_attribute1,
  addr_attribute2                   = p_rec.addr_attribute2,
  addr_attribute3                   = p_rec.addr_attribute3,
  addr_attribute4                   = p_rec.addr_attribute4,
  addr_attribute5                   = p_rec.addr_attribute5,
  addr_attribute6                   = p_rec.addr_attribute6,
  addr_attribute7                   = p_rec.addr_attribute7,
  addr_attribute8                   = p_rec.addr_attribute8,
  addr_attribute9                   = p_rec.addr_attribute9,
  addr_attribute10                  = p_rec.addr_attribute10,
  addr_attribute11                  = p_rec.addr_attribute11,
  addr_attribute12                  = p_rec.addr_attribute12,
  addr_attribute13                  = p_rec.addr_attribute13,
  addr_attribute14                  = p_rec.addr_attribute14,
  addr_attribute15                  = p_rec.addr_attribute15,
  addr_attribute16                  = p_rec.addr_attribute16,
  addr_attribute17                  = p_rec.addr_attribute17,
  addr_attribute18                  = p_rec.addr_attribute18,
  addr_attribute19                  = p_rec.addr_attribute19,
  addr_attribute20                  = p_rec.addr_attribute20,
  object_version_number             = p_rec.object_version_number
  where address_id = p_rec.address_id;
Line: 144

End update_dml;
Line: 178

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

End pre_update;
Line: 220

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

End post_update;
Line: 414

  If (p_rec.program_update_date = hr_api.g_date) then
    p_rec.program_update_date :=
    per_kad_shd.g_old_rec.program_update_date;
Line: 552

  per_kad_bus.update_validate(l_convert
                             ,p_effective_date
                             );
Line: 558

  pre_update(p_rec);
Line: 562

  update_dml(p_rec);
Line: 566

  post_update(p_rec,p_effective_date);
Line: 611

  ,p_program_update_date      in     date             default hr_api.g_date
  ,p_addr_attribute_category  in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute1          in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute2          in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute3          in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute4          in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute5          in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute6          in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute7          in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute8          in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute9          in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute10         in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute11         in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute12         in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute13         in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute14         in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute15         in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute16         in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute17         in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute18         in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute19         in     varchar2         default hr_api.g_varchar2
  ,p_addr_attribute20         in     varchar2         default hr_api.g_varchar2
  ,p_object_version_number    in out nocopy number
  ,p_validate                 in     boolean      default false
  ,p_effective_date           in     date
  ) is
--
  l_rec	  per_kad_shd.g_rec_type;
Line: 676

  p_program_update_date,
  p_addr_attribute_category,
  p_addr_attribute1,
  p_addr_attribute2,
  p_addr_attribute3,
  p_addr_attribute4,
  p_addr_attribute5,
  p_addr_attribute6,
  p_addr_attribute7,
  p_addr_attribute8,
  p_addr_attribute9,
  p_addr_attribute10,
  p_addr_attribute11,
  p_addr_attribute12,
  p_addr_attribute13,
  p_addr_attribute14,
  p_addr_attribute15,
  p_addr_attribute16,
  p_addr_attribute17,
  p_addr_attribute18,
  p_addr_attribute19,
  p_addr_attribute20,
  p_object_version_number
  );