DBA Data[Home] [Help]

APPS.HR_TMP_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
     where tmp.form_template_id = p_form_template_id;
Line: 313

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

End chk_non_updateable_args;
Line: 373

  SELECT 1
  FROM fnd_application
  WHERE application_id = p_application_id;
Line: 419

  SELECT 1
  FROM fnd_form
  WHERE form_id = p_form_id
  AND application_id = p_application_id;
Line: 465

  SELECT 1
  FROM fnd_territories
  WHERE territory_code = p_legislation_code;
Line: 600

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

End chk_delete;
Line: 619

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

End insert_validate;
Line: 686

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

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

End update_validate;
Line: 758

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

  chk_delete
    (p_rec                          => p_rec
    );
Line: 774

End delete_validate;