DBA Data[Home] [Help]

APPS.OTA_FTU_BUS SQL Statements

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

Line: 37

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_pvt_frm_thread_users ftu
     where ftu.forum_thread_id = p_forum_thread_id
     and ftu.forum_id = p_forum_id
       and ftu.person_id = p_person_id
       and ftu.contact_id = p_contact_id
       and pbg.business_group_id = ftu.business_group_id;
Line: 135

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_pvt_frm_thread_users ftu
     where ftu.forum_thread_id = p_forum_thread_id
       and ftu.forum_id = p_forum_id
       and ftu.person_id = p_person_id
       and ftu.contact_id = p_contact_id
       and pbg.business_group_id = ftu.business_group_id;
Line: 250

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

End chk_non_updateable_args;
Line: 283

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in ota_ftu_shd.g_rec_type
  ,p_forum_thread_id              in number
  ,p_forum_id                     in number
  ,p_person_id 	                  in number
  ,p_contact_id                   in number
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 314

End insert_validate;
Line: 319

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

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

End update_validate;
Line: 356

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

End delete_validate;