DBA Data[Home] [Help]

APPS.HXC_HRT_BUS SQL Statements

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

Line: 33

    select pbg.security_group_id
      from per_business_groups pbg
         , hxc_retrieval_processes hrt
      --   , EDIT_HERE table_name(s) 333
     where hrt.retrieval_process_id = p_retrieval_process_id;
Line: 105

    select pbg.legislation_code
      from per_business_groups     pbg
         , hxc_retrieval_processes hrt
      --   , EDIT_HERE table_name(s) 333
     where hrt.retrieval_process_id = p_retrieval_process_id;
Line: 204

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

End chk_non_updateable_args;
Line: 275

SELECT 'error'
FROM    sys.dual
WHERE EXISTS (
        SELECT  'x'
        FROM    hxc_retrieval_processes hrt
        WHERE   hrt.name = p_name
        AND     hrt.object_version_number <> NVL(p_object_version_number, -1) );
Line: 328

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in hxc_hrt_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 338

	l_proc := g_package||'insert_validate';
Line: 366

End insert_validate;
Line: 371

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in hxc_hrt_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 381

	l_proc := g_package||'update_validate';
Line: 405

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

End update_validate;
Line: 419

Procedure delete_validate
  (p_rec                          in hxc_hrt_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 428

	l_proc := g_package||'delete_validate';
Line: 437

End delete_validate;