| #htmleditformat( attrbTypeName )#
select distinct attrbTypeName
from qmd_permissions
where effectiveAttrbTypeCodes like
Inherited by:
#htmleditformat( _atm )#
|
#htmleditformat( attrbTypeDesc )#
select AttrbTypeCode, AttrbTypeName, AttrbTypeDesc, impliedAttrbTypeCodes
from tbl_SEC_AttributeTypes with (nolock)
where attrbTypeCode =
#htmleditformat( qmd_impliedPermission.AttrbTypeName )#
#htmleditformat( qmd_impliedPermission.AttrbTypeDesc )#
#_sql#
update tbl_SEC_AttributeTypes
set impliedAttrbTypeCodes = nullif( '#impliedAttrbTypeCodes#', '' ),
attrbTypeName = '#attrbTypeName#'
where attrbTypeCode = '#attrbTypeCode#'
|