DBA Data[Home] [Help]

APPS.HR_UCX_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_ucx_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_ui_contexts
          where  ui_context_key = p_gen_ui_context_key;
Line: 184

         select user_interface_id
           from hr_ki_user_interfaces
          where  user_interface_id = p_user_interface_id;
Line: 233

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

End insert_validate;
Line: 267

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 290

End update_validate;
Line: 295

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

End delete_validate;