DBA Data[Home] [Help]

APPS.HR_PFT_BUS SQL Statements

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

Line: 34

    select pbg.security_group_id
      from per_business_groups pbg
         , hr_all_positions_f_tl pft
      --   , EDIT_HERE table_name(s) 333
     where pft.position_id = p_position_id; */
Line: 45

       select pbg.security_group_id
       from per_business_groups pbg
            ,hr_all_positions_f_tl pft
            ,hr_all_positions_f pf
       where pf.position_id =p_position_id
       and pft.position_id = pf.position_id
       and pf.business_group_id = pbg.business_group_id;
Line: 120

    select pbg.legislation_code
      from per_business_groups     pbg
         , hr_all_positions_f_tl pft
         , hr_positions_f pof
     where pft.position_id = p_position_id
       and pft.language = p_language
       and pof.position_id = pft.position_id
       and pbg.business_group_id = pof.business_group_id;
Line: 215

Procedure chk_non_updateable_args
  (p_rec in hr_pft_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 238

End chk_non_updateable_args;
Line: 243

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

End insert_validate;
Line: 273

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 301

End update_validate;
Line: 306

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

End delete_validate;