DBA Data[Home] [Help]

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

  update per_security_organizations
    set
     organization_id                 = p_rec.organization_id
    ,security_profile_id             = p_rec.security_profile_id
    ,entry_type                      = p_rec.entry_type
    ,object_version_number           = p_rec.object_version_number
    ,security_organization_id        = p_rec.security_organization_id
    where security_organization_id = p_rec.security_organization_id;
Line: 102

End update_dml;
Line: 136

Procedure pre_update
  (p_rec in per_pso_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 per_pso_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 190

    per_pso_rku.after_update
      (p_organization_id
      => p_rec.organization_id
      ,p_security_profile_id
      => p_rec.security_profile_id
      ,p_entry_type
      => p_rec.entry_type
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_security_organization_id
      => p_rec.security_organization_id
      ,p_organization_id_o
      => per_pso_shd.g_old_rec.organization_id
      ,p_security_profile_id_o
      => per_pso_shd.g_old_rec.security_profile_id
      ,p_entry_type_o
      => per_pso_shd.g_old_rec.entry_type
      ,p_object_version_number_o
      => per_pso_shd.g_old_rec.object_version_number
      );
Line: 222

End post_update;
Line: 319

  per_pso_bus.update_validate
     (p_rec
     );
Line: 328

  per_pso_upd.pre_update(p_rec);
Line: 332

  per_pso_upd.update_dml(p_rec);
Line: 336

  per_pso_upd.post_update
     (p_rec
     );