DBA Data[Home] [Help]

APPS.HR_OTT_BUS SQL Statements

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

Line: 43

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

End chk_non_updateable_args;
Line: 101

         select
           null
         from
           hr_ki_option_types_tl
         where
           option_type_id   <> p_option_type_id
           and option_name =p_option_name
           and language=p_language;
Line: 191

  select
   null
  From
    hr_ki_option_types
  where
    option_type_id = p_option_type_id;
Line: 233

Procedure insert_validate
  (p_rec                          in hr_ott_shd.g_rec_type
  ,p_option_type_id               in number
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 267

End insert_validate;
Line: 272

Procedure update_validate
  (p_rec                          in hr_ott_shd.g_rec_type
   ,p_option_type_id              in number
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 288

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 302

End update_validate;
Line: 307

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

End delete_validate;