DBA Data[Home] [Help]

APPS.OTA_TCC_BUS SQL Statements

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

Line: 27

    select pbg.security_group_id
      from per_business_groups pbg
         , ota_cross_charges tcc
     where tcc.cross_charge_id = p_cross_charge_id
       and pbg.business_group_id = tcc.business_group_id;
Line: 87

    select pbg.legislation_code
      from per_business_groups pbg
         , ota_cross_charges tcc
     where tcc.cross_charge_id = p_cross_charge_id
       and pbg.business_group_id = tcc.business_group_id;
Line: 175

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

End chk_non_updateable_args;
Line: 227

SELECT null
FROM OTA_CROSS_CHARGES
WHERE cross_charge_id <> nvl(p_cross_charge_id,0) and
      Business_group_id = p_business_group_id and
      gl_Set_of_books_id   = p_gl_set_of_books_id and
      From_to = p_from_to and
      type    = p_type  and
      (p_start_date_active  between start_date_active and nvl(end_date_active, hr_api.g_eot)      or
      nvl(p_end_date_active,hr_api.g_eot)  between start_date_active and nvl(end_date_active, hr_api.g_eot));
Line: 415

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

End insert_validate;
Line: 456

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

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

End update_validate;
Line: 506

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

End delete_validate;