USP_DATALIST_PAGESHARING

Returns CMS Page Sharing part data associated with a specific part.

Parameters

Parameter Parameter Type Mode Description
@CONTENTID int IN SiteContentID

Definition

Copy


create procedure dbo.USP_DATALIST_PAGESHARING(@CONTENTID int)
as
    set nocount on;

    select ID,
           SiteContentID
    from dbo.SharingPart
    where SiteContentID = @CONTENTID