DBA Data[Home] [Help]

APPS.PER_BBT_BUS SQL Statements

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

Line: 27

    select inf.org_information14
      from hr_organization_information inf
         , per_bf_balance_types bbt
     where bbt.balance_type_id = p_balance_type_id
       and inf.organization_id   = bbt.business_group_id
       and inf.org_information_context || '' = 'Business Group Information';
Line: 86

    select pbg.legislation_code
      from per_business_groups pbg
         , per_bf_balance_types bbt
     where bbt.balance_type_id = p_balance_type_id
       and pbg.business_group_id = bbt.business_group_id;
Line: 172

Procedure chk_non_updateable_args
  (p_rec in per_bbt_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'check_non_updateable_args';
Line: 206

End chk_non_updateable_args;
Line: 255

 SELECT iv.effective_start_date
       ,iv.effective_end_date
       ,et.output_currency_code
       ,iv.uom
 FROM pay_element_types_f et
    , pay_input_values_f  iv
 WHERE iv.input_value_id = p_input_value_id
   AND iv.element_type_id= et.element_type_id
   AND iv.business_group_id = p_business_group_id;
Line: 376

  SELECT 1
  FROM per_bf_balance_types
  WHERE(  (p_balance_type_id IS NULL)
       or (balance_type_id <> p_balance_type_id))
    AND displayed_name = p_displayed_name
    AND business_group_id  = p_business_group_id ;
Line: 461

  SELECT 1
  FROM per_bf_balance_types
  WHERE(  (p_balance_type_id IS NULL)
       or (balance_type_id <> p_balance_type_id))
    AND internal_name = p_internal_name
    AND business_group_id  = p_business_group_id ;
Line: 541

  SELECT start_date_active, end_date_active, enabled_flag
  FROM hr_lookups
  WHERE lookup_type = 'UNITS'
  and lookup_code = p_uom;
Line: 709

  SELECT start_date_active, end_date_active , enabled_flag
  FROM hr_lookups
  WHERE lookup_type = 'BACKFEED_BT_CATEGORY'
    AND  lookup_code = p_category;
Line: 775

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

End insert_validate;
Line: 837

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

End update_validate;
Line: 899

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

End delete_validate;