DBA Data[Home] [Help]

APPS.HXC_HRP_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_recurring_periods hrp
      --   , EDIT_HERE table_name(s) 333
     where hrp.recurring_period_id = p_recurring_period_id;
Line: 105

    select pbg.legislation_code
      from per_business_groups     pbg
         , hxc_recurring_periods hrp
      --   , EDIT_HERE table_name(s) 333
     where hrp.recurring_period_id = p_recurring_period_id;
Line: 204

Procedure chk_non_updateable_args
  (p_effective_date               in date
  ,p_rec in hxc_hrp_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_recurring_periods hrp
        WHERE   hrp.name = p_name
        AND     hrp.object_version_number <> NVL(p_object_version_number, -1) );
Line: 363

   select 'Y'
     from PER_TIME_PERIOD_TYPES ptpt
    where ptpt.period_type = p_period_type
      and ptpt.period_type <> 'Bi-Month';
Line: 493

Procedure chk_delete
  (
   p_recurring_period_id in hxc_recurring_periods.recurring_period_id%TYPE
  ) IS
--
  l_proc  varchar2(72);
Line: 502

SELECT 'exists'
FROM   hxc_approval_period_comps
WHERE  recurring_period_id = p_recurring_period_id;
Line: 512

	l_proc := g_package||'chk_delete';
Line: 547

END chk_delete;
Line: 553

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

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

End insert_validate;
Line: 613

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

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

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

End update_validate;
Line: 676

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

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

  chk_delete
  (
   p_recurring_period_id => p_rec.recurring_period_id
  );
Line: 699

End delete_validate;