DBA Data[Home] [Help]

APPS.HR_OPT_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_opt_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 111

End chk_non_updateable_args;
Line: 142

         select option_type_id
           from hr_ki_option_types
          where  option_type_id = p_option_type_id;
Line: 293

         select responsibility_id
           from fnd_responsibility
          where  responsibility_id =l_r_id
          and application_id=l_a_id;
Line: 300

         select application_id
           from fnd_application
          where  application_id =p_option_level_id ;
Line: 306

         select user_id
           from fnd_user
          where  user_id=p_option_level_id ;
Line: 532

         select INTEGRATION_ID
           from hr_ki_integrations
          where  integration_id = p_integration_id;
Line: 614

           select null
             from hr_ki_options
            where  (option_type_id = p_option_type_id
            and integration_id = p_integration_id
            and option_level=p_option_level)
            and (option_level_id=p_option_level_id
            or option_level_id is null);
Line: 669

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in hr_opt_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 726

End insert_validate;
Line: 731

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

  chk_non_updateable_args
    (
      p_rec                       => p_rec
    );
Line: 762

End update_validate;
Line: 767

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

End delete_validate;