DBA Data[Home] [Help]

APPS.HR_PFT_UPD SQL Statements

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

Line: 54

Procedure update_dml
  (p_rec in out nocopy hr_pft_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 68

  update hr_all_positions_f_tl
    set
     position_id                     = p_rec.position_id
    ,language                        = p_rec.language
    ,source_lang                     = p_rec.source_lang
    ,name                            = p_rec.name
    where position_id = p_rec.position_id
    and language = p_rec.language;
Line: 100

End update_dml;
Line: 134

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

End pre_update;
Line: 178

Procedure post_update
  (p_rec                          in hr_pft_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 188

    hr_pft_rku.after_update
      (p_position_id
      => p_rec.position_id
      ,p_language
      => p_rec.language
      ,p_source_lang
      => p_rec.source_lang
      ,p_name
      => p_rec.name
      ,p_source_lang_o
      => hr_pft_shd.g_old_rec.source_lang
      ,p_name_o
      => hr_pft_shd.g_old_rec.name
      );
Line: 214

End post_update;
Line: 307

  hr_pft_bus.update_validate
     (p_rec
     );
Line: 316

  hr_pft_upd.pre_update(p_rec);
Line: 320

  hr_pft_upd.update_dml(p_rec);
Line: 324

  hr_pft_upd.post_update
     (p_rec
     );
Line: 387

  select l.language_code
       , l.nls_language
       , pd.id_flex_num
    from fnd_languages l
       , per_position_definitions pd
   where pd.position_definition_id = p_position_definition_id
     and l.installed_flag IN ('B', 'I');
Line: 421

           select psf.name into  l_pft_rec.name
           from hr_all_positions_f psf
           where psf.position_id = p_position_id
           and psf.effective_end_date = hr_general.end_of_time;
Line: 432

       update_dml(l_pft_rec);
Line: 459

    select pft.language
      from hr_all_positions_f_tl pft
     where pft.position_id = p_position_id
       and p_language_code in (pft.language
                              ,pft.source_lang);