DBA Data[Home] [Help]

APPS.HR_NMF_BUS SQL Statements

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

Line: 30

    select nmf.legislation_code
      from hr_name_formats nmf
     where nmf.name_format_id = p_name_format_id;
Line: 121

Procedure chk_delete(p_name_format_id  in hr_name_formats.name_format_id%TYPE
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_delete';
Line: 128

     select created_by
       from hr_name_formats
      where name_format_id = p_id;
Line: 151

End chk_delete;
Line: 180

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

End chk_non_updateable_args;
Line: 730

     select 'Y'
       from HR_NAME_FORMATS
      where format_name        = p_format_name
        and (p_leg_code is null and legislation_code is null
             or p_leg_code is not null and legislation_code   = p_leg_code)
        and user_format_choice = p_user_choice;
Line: 786

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

End insert_validate;
Line: 856

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

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

End update_validate;
Line: 900

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

  chk_delete(p_name_format_id  => p_rec.name_format_id);
Line: 918

End delete_validate;