spSitePagesByContentRealmType
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ClientSitesID | int | IN | |
@ContentRealmTypeID | int | IN |
Definition
Copy
create PROCEDURE [dbo].[spSitePagesByContentRealmType]
(
@ClientSitesID int,
@ContentRealmTypeID int
)
AS
SELECT
DISTINCT PageName, PageID
FROM
vwPageContent
WHERE
ClientSitesID = @ClientSitesID
and IsTemplatePage = 0
and RealmTypeId = @ContentRealmTypeID
Order by PageName