DBA Data[Home] [Help]

APPS.OTA_TPL_UPD SQL Statements

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

Line: 54

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

  update ota_price_lists
  set
  price_list_id                     = p_rec.price_list_id,
  business_group_id                 = p_rec.business_group_id,
  currency_code                     = p_rec.currency_code,
  default_flag                      = p_rec.default_flag,
  name                              = p_rec.name,
  object_version_number             = p_rec.object_version_number,
  price_list_type                   = p_rec.price_list_type,
  start_date                        = p_rec.start_date,
  comments                          = p_rec.comments,
  description                       = p_rec.description,
  end_date                          = p_rec.end_date,
  single_unit_price                 = p_rec.single_unit_price,
  training_unit_type                = p_rec.training_unit_type,
  tpl_information_category          = p_rec.tpl_information_category,
  tpl_information1                  = p_rec.tpl_information1,
  tpl_information2                  = p_rec.tpl_information2,
  tpl_information3                  = p_rec.tpl_information3,
  tpl_information4                  = p_rec.tpl_information4,
  tpl_information5                  = p_rec.tpl_information5,
  tpl_information6                  = p_rec.tpl_information6,
  tpl_information7                  = p_rec.tpl_information7,
  tpl_information8                  = p_rec.tpl_information8,
  tpl_information9                  = p_rec.tpl_information9,
  tpl_information10                 = p_rec.tpl_information10,
  tpl_information11                 = p_rec.tpl_information11,
  tpl_information12                 = p_rec.tpl_information12,
  tpl_information13                 = p_rec.tpl_information13,
  tpl_information14                 = p_rec.tpl_information14,
  tpl_information15                 = p_rec.tpl_information15,
  tpl_information16                 = p_rec.tpl_information16,
  tpl_information17                 = p_rec.tpl_information17,
  tpl_information18                 = p_rec.tpl_information18,
  tpl_information19                 = p_rec.tpl_information19,
  tpl_information20                 = p_rec.tpl_information20
  where price_list_id = p_rec.price_list_id;
Line: 130

End update_dml;
Line: 164

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

End pre_update;
Line: 206

Procedure post_update(p_rec in ota_tpl_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 214

End post_update;
Line: 446

  ota_tpl_bus.update_validate(convert_defs(p_rec));
Line: 450

  pre_update(p_rec);
Line: 454

  update_dml(p_rec);
Line: 458

  post_update(p_rec);