DBA Data[Home] [Help]

APPS.PQP_FXT_UPD SQL Statements

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

Line: 54

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

  update pqp_flxdu_xml_tags
    set
     flxdu_xml_tag_id                = p_rec.flxdu_xml_tag_id
    ,flxdu_column_id                 = p_rec.flxdu_column_id
    ,flxdu_xml_tag_name              = p_rec.flxdu_xml_tag_name
    ,business_group_id               = p_rec.business_group_id
    ,object_version_number           = p_rec.object_version_number
    where flxdu_xml_tag_id = p_rec.flxdu_xml_tag_id;
Line: 102

End update_dml;
Line: 136

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

End pre_update;
Line: 180

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

    pqp_fxt_rku.after_update
      (p_flxdu_xml_tag_id
      => p_rec.flxdu_xml_tag_id
      ,p_flxdu_column_id
      => p_rec.flxdu_column_id
      ,p_flxdu_xml_tag_name
      => p_rec.flxdu_xml_tag_name
      ,p_business_group_id
      => p_rec.business_group_id
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_flxdu_column_id_o
      => pqp_fxt_shd.g_old_rec.flxdu_column_id
      ,p_flxdu_xml_tag_name_o
      => pqp_fxt_shd.g_old_rec.flxdu_xml_tag_name
      ,p_business_group_id_o
      => pqp_fxt_shd.g_old_rec.business_group_id
      ,p_object_version_number_o
      => pqp_fxt_shd.g_old_rec.object_version_number
      );
Line: 222

End post_update;
Line: 319

  pqp_fxt_bus.update_validate
     (p_rec
     );
Line: 328

  pqp_fxt_upd.pre_update(p_rec);
Line: 332

  pqp_fxt_upd.update_dml(p_rec);
Line: 336

  pqp_fxt_upd.post_update
     (p_rec
     );