DBA Data[Home] [Help]

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

  update per_ri_configurations
    set
     configuration_code              = p_rec.configuration_code
    ,configuration_type              = p_rec.configuration_type
    ,configuration_status            = p_rec.configuration_status
    ,object_version_number           = p_rec.object_version_number
    where configuration_code = p_rec.configuration_code;
Line: 101

End update_dml;
Line: 135

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

End pre_update;
Line: 179

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

    per_cnf_rku.after_update
      (p_effective_date              => p_effective_date
      ,p_configuration_code
      => p_rec.configuration_code
      ,p_configuration_type
      => p_rec.configuration_type
      ,p_configuration_status
      => p_rec.configuration_status
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_configuration_type_o
      => per_cnf_shd.g_old_rec.configuration_type
      ,p_configuration_status_o
      => per_cnf_shd.g_old_rec.configuration_status
      ,p_object_version_number_o
      => per_cnf_shd.g_old_rec.object_version_number
      );
Line: 219

End post_update;
Line: 313

  per_cnf_bus.update_validate
     (p_effective_date
     ,p_rec
     );
Line: 323

  per_cnf_upd.pre_update(p_rec);
Line: 327

  per_cnf_upd.update_dml(p_rec);
Line: 331

  per_cnf_upd.post_update
     (p_effective_date
     ,p_rec
     );