DBA Data[Home] [Help]

APPS.PER_PSO_INS SQL Statements

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

Line: 75

Procedure insert_dml
  (p_rec in out nocopy per_pso_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_dml';
Line: 89

  insert into per_security_organizations
      (organization_id
      ,security_profile_id
      ,entry_type
      ,object_version_number
      ,security_organization_id
      )
  Values
    (p_rec.organization_id
    ,p_rec.security_profile_id
    ,p_rec.entry_type
    ,p_rec.object_version_number
    ,p_rec.security_organization_id
    );
Line: 126

End insert_dml;
Line: 165

Procedure pre_insert
  (p_rec  in out nocopy per_pso_shd.g_rec_type
  ) is
--
  Cursor C_Sel1 is select per_security_organizations_s.nextval from sys.dual;
Line: 172

    Select null
      from per_security_organizations
     where security_organization_id =
             per_pso_ins.g_security_organization_id_i;
Line: 177

  l_proc   varchar2(72) := g_package||'pre_insert';
Line: 218

End pre_insert;
Line: 252

Procedure post_insert
  (p_rec                          in per_pso_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_insert';
Line: 262

    per_pso_rki.after_insert
      (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
      );
Line: 286

End post_insert;
Line: 302

  per_pso_bus.insert_validate
     (p_rec
     );
Line: 311

  per_pso_ins.pre_insert(p_rec);
Line: 315

  per_pso_ins.insert_dml(p_rec);
Line: 319

  per_pso_ins.post_insert
     (p_rec
     );