DBA Data[Home] [Help]

APPS.OTA_CFS_BUS SQL Statements

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

Line: 28

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_conference_servers_b cfs
     where cfs.conference_server_id = p_conference_server_id
       and pbg.business_group_id = cfs.business_group_id;
Line: 99

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_conference_servers_b cfs
     where cfs.conference_server_id = p_conference_server_id
       and pbg.business_group_id = cfs.business_group_id;
Line: 355

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

End chk_non_updateable_args;
Line: 403

	--	Do not perform the uniqueness check unless inserting, or updating
	--	with a value different from the current value (and not just changing
	--	case)
	--
		--
		if (not UNIQUE_CFS_NAME (
				P_NAME 		         =>  P_NAME,
				P_BUSINESS_GROUP_ID      =>  P_BUSINESS_GROUP_ID,
                       P_CONFERENCE_SERVER_ID   => P_CONFERENCE_SERVER_ID    )) then
                fnd_message.set_name('OTA','OTA_443914_CFS_UNIQUE');
Line: 457

		SELECT 1
            FROM OTA_CONFERENCE_SERVERS_B CFS,
                 OTA_CONFERENCE_SERVERS_TL CFT
		WHERE CFT.NAME  = P_NAME
            AND   CFS.CONFERENCE_SERVER_ID = CFT.CONFERENCE_SERVER_ID
            AND   CFT.LANGUAGE= USERENV('LANG')
		AND   CFS.BUSINESS_GROUP_ID = P_BUSINESS_GROUP_ID
                AND (  CFS.CONFERENCE_SERVER_ID <> P_CONFERENCE_SERVER_ID or
                      P_CONFERENCE_SERVER_ID IS NULL ) ;
Line: 470

select name
from ota_conference_servers_tl cft where
cft.conference_server_id = P_CONFERENCE_SERVER_ID
and CFT.LANGUAGE= USERENV('LANG');
Line: 551

    select 'Y'
      from ota_conferences              cfr
     where cfr.conference_server_id = p_conference_server_id;
Line: 568

                      , p_error_txt            =>  'OTA_443745_CFS_NO_DELETE'
                      );
Line: 583

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in out nocopy ota_cfs_shd.g_rec_type
  ,p_name                in varchar2

  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 618

End insert_validate;
Line: 623

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in out nocopy ota_cfs_shd.g_rec_type
  ,p_name                         in varchar2
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 653

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

End update_validate;
Line: 667

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

End delete_validate;