DBA Data[Home] [Help]

APPS.OTA_CHT_BUS SQL Statements

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

Line: 29

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_chats_b cht
     where cht.chat_id = p_chat_id
     and pbg.business_group_id = cht.business_group_id;
Line: 102

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , ota_chats_b cht
     where cht.chat_id = p_chat_id
       and pbg.business_group_id = cht.business_group_id;
Line: 194

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

End chk_non_updateable_args;
Line: 224

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in ota_cht_shd.g_rec_type
  ,p_chat_id                      in ota_chats_b.chat_id%type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 244

End insert_validate;
Line: 249

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

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

End update_validate;
Line: 283

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

End delete_validate;