积极答复者
isv页面中如何读取到实体的picklist属性中的值

问题
答案
-
使用 Metadata SDK 或通过 SQL 来读取。 但 SQL 直接读取是一种不支持和不太好的方法。
Darren Liu (MSFT) | 刘嘉鸿 | Blog: http://liudarren.spaces.live.com- 已标记为答案 darrenliuMicrosoft employee, Moderator 2010年8月12日 18:23
-
DECLARE @EntityName nvarchar(100)
DECLARE @AttributeName nvarchar(100)
set @EntityName ='salesorder'
set @AttributeName='shippingmethodcode'
SELECT a.AttributeValue , a.Value FROM
StringMap as a , Entity b
where
a.ObjectTypeCode=b.ObjectTypeCode
AND b.Name=@EntityName
and a.LangId =2052
and a.AttributeName = @AttributeName- 已标记为答案 darrenliuMicrosoft employee, Moderator 2010年8月12日 18:23
全部回复
-
使用 Metadata SDK 或通过 SQL 来读取。 但 SQL 直接读取是一种不支持和不太好的方法。
Darren Liu (MSFT) | 刘嘉鸿 | Blog: http://liudarren.spaces.live.com- 已标记为答案 darrenliuMicrosoft employee, Moderator 2010年8月12日 18:23
-
DECLARE @EntityName nvarchar(100)
DECLARE @AttributeName nvarchar(100)
set @EntityName ='salesorder'
set @AttributeName='shippingmethodcode'
SELECT a.AttributeValue , a.Value FROM
StringMap as a , Entity b
where
a.ObjectTypeCode=b.ObjectTypeCode
AND b.Name=@EntityName
and a.LangId =2052
and a.AttributeName = @AttributeName- 已标记为答案 darrenliuMicrosoft employee, Moderator 2010年8月12日 18:23