DBA Data[Home] [Help]

APPS.HR_HTL_BUS SQL Statements

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

Line: 44

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

End chk_non_updateable_args;
Line: 101

  select
   'found'
  From
    hr_ki_hierarchies  hrc
  where
    hrc.hierarchy_id = p_hierarchy_id;
Line: 183

  select
   'found'
  From
    hr_ki_hierarchies_tl  htl
  where
    htl.language = p_language and
    htl.name = p_name and
    htl.hierarchy_id <> p_hierarchy_id;
Line: 236

Procedure insert_validate
  (p_rec                          in hr_htl_shd.g_rec_type,
   p_hierarchy_id              in number
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 258

End insert_validate;
Line: 263

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 288

End update_validate;
Line: 293

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

End delete_validate;