DBA Data[Home] [Help]

APPS.PER_STC_INS SQL Statements

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

Line: 81

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

  insert into per_solution_type_cmpts
      (component_name
      ,solution_type_name
      ,legislation_code
      ,api_name
      ,parent_component_name
      ,updateable
      ,extensible
      ,object_version_number
      )
  Values
    (p_rec.component_name
    ,p_rec.solution_type_name
    ,p_rec.legislation_code
    ,p_rec.api_name
    ,p_rec.parent_component_name
    ,p_rec.updateable
    ,p_rec.extensible
    ,p_rec.object_version_number
    );
Line: 138

End insert_dml;
Line: 177

Procedure pre_insert
  (p_rec  in out nocopy per_stc_shd.g_rec_type
  ) is
--
  Cursor C_Sel2 is
    Select null
      from per_solution_type_cmpts
     where component_name     = per_stc_ins.g_component_name_i
       and solution_type_name = per_stc_ins.g_solution_type_name_i
       and legislation_code   = per_stc_ins.g_legislation_code_i;
Line: 188

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

End pre_insert;
Line: 266

Procedure post_insert
  (p_effective_date               in date
  ,p_rec                          in per_stc_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_insert';
Line: 277

    per_stc_rki.after_insert
      (p_effective_date              => p_effective_date
      ,p_component_name
      => p_rec.component_name
      ,p_solution_type_name
      => p_rec.solution_type_name
      ,p_legislation_code
      => p_rec.legislation_code
      ,p_api_name
      => p_rec.api_name
      ,p_parent_component_name
      => p_rec.parent_component_name
      ,p_updateable
      => p_rec.updateable
      ,p_extensible
      => p_rec.extensible
      ,p_object_version_number
      => p_rec.object_version_number
      );
Line: 308

End post_insert;
Line: 325

  per_stc_bus.insert_validate
     (p_effective_date
     ,p_rec
     );
Line: 335

  per_stc_ins.pre_insert(p_rec);
Line: 339

  per_stc_ins.insert_dml(p_rec);
Line: 343

  per_stc_ins.post_insert
     (p_effective_date
     ,p_rec
     );
Line: 360

  ,p_updateable                     in     varchar2
  ,p_extensible                     in     varchar2
  ,p_parent_component_name          in     varchar2 default null
  ,p_component_name                    out nocopy varchar2
  ,p_solution_type_name                out nocopy varchar2
  ,p_legislation_code                  out nocopy varchar2
  ,p_object_version_number             out nocopy number
  ) is
--
  l_rec   per_stc_shd.g_rec_type;
Line: 385

    ,p_updateable
    ,p_extensible
    ,null
    );