DBA Data[Home] [Help]

APPS.PQP_FFA_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_ffa_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 70

  update pqp_flxdu_func_attributes
    set
     flxdu_func_attribute_id         = p_rec.flxdu_func_attribute_id
    ,flxdu_func_name                 = p_rec.flxdu_func_name
    ,flxdu_func_source_type          = p_rec.flxdu_func_source_type
    ,flxdu_func_integrator_code      = p_rec.flxdu_func_integrator_code
    ,flxdu_func_xml_data             = p_rec.flxdu_func_xml_data
    ,legislation_code                = p_rec.legislation_code
    ,description                     = p_rec.description
    ,object_version_number           = p_rec.object_version_number
    where flxdu_func_attribute_id = p_rec.flxdu_func_attribute_id;
Line: 105

End update_dml;
Line: 139

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

End pre_update;
Line: 183

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

    pqp_ffa_rku.after_update
      (p_flxdu_func_attribute_id
      => p_rec.flxdu_func_attribute_id
      ,p_flxdu_func_name
      => p_rec.flxdu_func_name
      ,p_flxdu_func_source_type
      => p_rec.flxdu_func_source_type
      ,p_flxdu_func_integrator_code
      => p_rec.flxdu_func_integrator_code
      ,p_flxdu_func_xml_data
      => p_rec.flxdu_func_xml_data
      ,p_legislation_code
      => p_rec.legislation_code
      ,p_description
      => p_rec.description
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_flxdu_func_name_o
      => pqp_ffa_shd.g_old_rec.flxdu_func_name
      ,p_flxdu_func_source_type_o
      => pqp_ffa_shd.g_old_rec.flxdu_func_source_type
      ,p_flxdu_func_integrator_code_o
      => pqp_ffa_shd.g_old_rec.flxdu_func_integrator_code
      ,p_flxdu_func_xml_data_o
      => pqp_ffa_shd.g_old_rec.flxdu_func_xml_data
      ,p_legislation_code_o
      => pqp_ffa_shd.g_old_rec.legislation_code
      ,p_description_o
      => pqp_ffa_shd.g_old_rec.description
      ,p_object_version_number_o
      => pqp_ffa_shd.g_old_rec.object_version_number
      );
Line: 237

End post_update;
Line: 346

  pqp_ffa_bus.update_validate
     (p_rec
     );
Line: 355

  pqp_ffa_upd.pre_update(p_rec);
Line: 359

  pqp_ffa_upd.update_dml(p_rec);
Line: 363

  pqp_ffa_upd.post_update
     (p_rec
     );