DBA Data[Home] [Help]

APPS.HR_OTY_BUS SQL Statements

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

Line: 42

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

End chk_non_updateable_args;
Line: 105

         select null
           from hr_ki_option_types
          where  option_type_key = p_option_type_key;
Line: 256

procedure chk_delete
  (p_option_type_id                        in number
  )
  is
  --
  -- Declare local variables
  --
  l_proc              varchar2(72) :=  g_package||'chk_delete';
Line: 270

    select null
      from hr_ki_options
     where option_type_id          = p_option_type_id         ;
Line: 275

    select null
      from hr_ki_option_types_tl
     where option_type_id          = p_option_type_id         ;
Line: 316

end chk_delete;
Line: 322

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

End insert_validate;
Line: 361

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 390

End update_validate;
Line: 395

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

    HR_OTY_BUS.chk_delete
    (p_option_type_id       =>     p_rec.option_type_id
    );
Line: 411

End delete_validate;