USP_DATALIST_SEARCHPART_CLIENTSITES
Returns the CMS client sites that will be searched by the specified search part.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@SEARCHPARTID | int | IN | Input parameter indicating the context ID for the data list. |
Definition
Copy
CREATE procedure dbo.USP_DATALIST_SEARCHPART_CLIENTSITES(@SEARCHPARTID int)
as
set nocount on;
select CLIENTSITESID
from dbo.SEARCHPART_CLIENTSITES
where SEARCHPARTID = @SEARCHPARTID