DBA Data[Home] [Help]

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

End chk_non_updateable_args;
Line: 98

       select null from user_objects
       where object_type='VIEW'
       and object_name =p_view_name;
Line: 141

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

End insert_validate;
Line: 167

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 192

End update_validate;
Line: 197

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

End delete_validate;