USP_DATALIST_CMSUSERCULTURELANGUAGE

Returns the culture language for the specified CMS user

Parameters

Parameter Parameter Type Mode Description
@CMSUSERGUID uniqueidentifier IN Input parameter indicating the context ID for the data list.

Definition

Copy


create procedure dbo.USP_DATALIST_CMSUSERCULTURELANGUAGE(@CMSUSERGUID uniqueidentifier)
as
    set nocount on;

    select CULTURELANGUAGE
    from dbo.CMSUSERCULTURELANGUAGE
    where ID = @CMSUSERGUID