DBA Data[Home] [Help]

APPS.OTA_CUS_BUS SQL Statements

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

Line: 34

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_chat_users cus
     where cus.chat_id = p_chat_id
       and cus.person_id = p_person_id
       and cus.contact_id = p_contact_id
       and pbg.business_group_id = cus.business_group_id;
Line: 123

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_chat_users cus
     where cus.chat_id = p_chat_id
       and cus.person_id = p_person_id
       and cus.contact_id = p_contact_id
       and pbg.business_group_id = cus.business_group_id;
Line: 229

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

End chk_non_updateable_args;
Line: 261

Procedure insert_validate
  (p_effective_date               in date
  ,p_chat_id                      in number
  ,p_person_id                      in number
  ,p_contact_id                      in number
  ,p_rec                          in ota_cus_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 291

End insert_validate;
Line: 296

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

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

End update_validate;
Line: 333

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

End delete_validate;