DBA Data[Home] [Help]

APPS.HR_ITF_BUS SQL Statements

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

Line: 46

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

End chk_non_updateable_args;
Line: 183

    select
      'found'
    From
      fnd_form  frm
    where
      frm.form_name = p_form_name;
Line: 191

     select
      'found'
     From
       hr_ki_user_interfaces itf
     Where
        itf.type = p_type
        and itf.form_name = p_form_name
        and (p_user_interface_id is null or
        itf.user_interface_id <> p_user_interface_id);
Line: 297

    select
      'found'
    From
      fnd_form_functions  frm
    where
      frm.function_name = p_page_region_code;
Line: 308

    select 'found'
      from hr_ki_user_interfaces itf
      where
          itf.type = cur_type
      and itf.page_region_code = cur_page_region_code
      and (cur_region_code is null or itf.region_code = cur_region_code)
      and (cur_user_interface_id is null or itf.user_interface_id <> cur_user_interface_id);
Line: 490

procedure chk_delete(p_user_interface_id in varchar2)
is

CURSOR csr_hnm_id is
    select
      distinct 'found'
    From
      hr_ki_hierarchy_node_maps  hnm
    where
      hnm.user_interface_id = p_user_interface_id;
Line: 502

l_proc    varchar2(72) := g_package ||'chk_delete';
Line: 532

 End chk_delete;
Line: 537

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in out nocopy hr_itf_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 572

End insert_validate;
Line: 577

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in out nocopy hr_itf_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 592

  chk_non_updateable_args
    (p_effective_date              => p_effective_date
      ,p_rec              => p_rec
    );
Line: 618

End update_validate;
Line: 623

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

  chk_delete(p_rec.user_interface_id);
Line: 637

End delete_validate;