DBA Data[Home] [Help]

APPS.OTA_TMT_BUS SQL Statements

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

Line: 26

    select inf.org_information14
    from   hr_organization_information inf
          ,ota_tp_measurement_types tmt
    where  tmt.tp_measurement_type_id        = p_tp_measurement_type_id
    and    inf.organization_id               = tmt.business_group_id
    and    inf.org_information_context || '' = 'Business Group Information';
Line: 89

    select pbg.legislation_code
      from per_business_groups pbg
         , ota_tp_measurement_types tmt
     where tmt.tp_measurement_type_id = p_tp_measurement_type_id
       and pbg.business_group_id = tmt.business_group_id;
Line: 354

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

End chk_non_updateable_args;
Line: 412

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in ota_tmt_shd.g_rec_type
  ) is
--
  cursor csr_leg_code is
    select pbg.legislation_code
    from per_business_groups pbg
    where pbg.business_group_id = p_rec.business_group_id;
Line: 421

    l_proc  varchar2(72) := g_package||'insert_validate';
Line: 498

End insert_validate;
Line: 503

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in ota_tmt_shd.g_rec_type
  ) is
--
  cursor csr_leg_code is
    select pbg.legislation_code
    from per_business_groups pbg
    where pbg.business_group_id = p_rec.business_group_id;
Line: 513

  l_proc  varchar2(72) := g_package||'update_validate';
Line: 522

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

End update_validate;
Line: 592

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

End delete_validate;