USP_BBNC_GETSELECTIONLISTINFO
Retrieves information necessary to use the list specified for BBNC.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@LISTID | int | IN |
Definition
Copy
create procedure [dbo].[USP_BBNC_GETSELECTIONLISTINFO](@LISTID int)
with execute as caller
as
begin
set nocount on;
select
DBOBJECTNAME,
OBJECTTYPE
from
dbo.IDSETREGISTER
inner join
dbo.BBNCIDSETIDMAP on IDSETREGISTER.ID = BBNCIDSETIDMAP.IDSETREGISTERID
where
BBNCIDSETIDMAP.ID = @LISTID
end