DBA Data[Home] [Help]

APPS.PER_CNT_INS SQL Statements

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

Line: 53

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

  insert into per_ri_configurations_tl
      (configuration_code
      ,configuration_name
      ,configuration_description
      ,language
      ,source_lang
      )
  Values
    (p_rec.configuration_code
    ,p_rec.configuration_name
    ,p_rec.configuration_description
    ,p_rec.language
    ,p_rec.source_lang
    );
Line: 104

End insert_dml;
Line: 143

Procedure pre_insert
  (p_rec                          in out nocopy per_cnt_shd.g_rec_type
  ,p_configuration_code           in varchar2
  ) is
--
  l_proc  varchar2(72) := g_package||'pre_insert';
Line: 156

End pre_insert;
Line: 190

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

    per_cnt_rki.after_insert
      (p_effective_date              => p_effective_date
      ,p_configuration_code
      => p_rec.configuration_code
      ,p_configuration_name
      => p_rec.configuration_name
      ,p_configuration_description
      => p_rec.configuration_description
      ,p_language
      => p_rec.language
      ,p_source_lang
      => p_rec.source_lang
      );
Line: 226

End post_insert;
Line: 244

  per_cnt_bus.insert_validate
     (p_effective_date
     ,p_rec
     );
Line: 254

  per_cnt_ins.pre_insert
    (p_rec                         => p_rec
    ,p_configuration_code          => p_configuration_code
    );
Line: 261

  per_cnt_ins.insert_dml(p_rec);
Line: 265

  per_cnt_ins.post_insert
     (p_effective_date
     ,p_rec
     );
Line: 337

    select l.language_code
      from fnd_languages l
     where l.installed_flag in ('I','B')
       and not exists (select null
                         from per_ri_configurations_tl cnt
                        where cnt.configuration_code = p_configuration_code
                          and cnt.language = l.language_code);