DBA Data[Home] [Help]

APPS.HR_TPP_BUS SQL Statements

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

Line: 50

    select tmp.legislation_code
      from hr_form_templates_b tmp
          ,hr_template_windows_b twn
          ,hr_template_canvases_b tcn
          ,hr_template_tab_pages_b ttp
          ,hr_tab_page_properties_b tpp
     where tmp.form_template_id = twn.form_template_id
       and twn.template_window_id = tcn.template_window_id
       and tcn.template_canvas_id = ttp.template_canvas_id
       and ttp.template_tab_page_id = tpp.template_tab_page_id
       and tpp.tab_page_property_id = p_tab_page_property_id;
Line: 320

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

End chk_non_updateable_args;
Line: 574

Procedure chk_delete
  (p_rec                          in hr_tpp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'chk_delete';
Line: 588

End chk_delete;
Line: 593

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in hr_tpp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 652

End insert_validate;
Line: 657

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in hr_tpp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 678

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

End update_validate;
Line: 726

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

  chk_delete
    (p_rec                          => p_rec
    );
Line: 742

End delete_validate;