DBA Data[Home] [Help]

APPS.OTA_COI_BUS SQL Statements

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

Line: 39

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_chat_obj_inclusions coi
      --   , EDIT_HERE table_name(s) 333
     where coi.chat_id = p_chat_id
       and coi.object_id = p_object_id
       and coi.object_type = p_object_type;
Line: 134

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , ota_chat_obj_inclusions coi
      --   , EDIT_HERE table_name(s) 333
     where coi.chat_id = p_chat_id
       and coi.object_id = p_object_id
       and coi.object_type = p_object_type;
Line: 241

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

End chk_non_updateable_args;
Line: 289

    select 'Y'
      from OTA_CHAT_OBJ_INCLUSIONS  coi
     where coi.chat_id = p_chat_id
       and coi.object_id   = p_object_id
       and coi.object_type = 'C';
Line: 343

    SELECT
      start_date_active,
      nvl(end_date_active, to_date ('31-12-4712', 'DD-MM-YYYY'))
    FROM  ota_category_usages
    WHERE category_usage_id =p_object_id;
Line: 350

     SELECT start_date_active,
                      nvl(end_date_active, to_date ('31-12-4712', 'DD-MM-YYYY'))
    FROM ota_chats_b
    WHERE chat_id = p_chat_id;
Line: 428

  select 'Y'
  from OTA_CHAT_OBJ_INCLUSIONS coi
  where coi.chat_id = p_chat_id
  and coi.primary_flag = 'Y';
Line: 482

  select 'Y'
  from OTA_CHAT_OBJ_INCLUSIONS coi
  where coi.chat_id = p_chat_id
  and   coi.object_id = p_object_id
  and coi.primary_flag = 'Y';
Line: 562

Procedure insert_validate
  (p_effective_date               in date
  ,p_chat_id                      in number
  ,p_object_id                    in number
  ,p_object_type                  in varchar2
  ,p_rec                          in ota_coi_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 603

End insert_validate;
Line: 608

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

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

End update_validate;
Line: 642

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

End delete_validate;