码迷,mamicode.com
首页 > 其他好文 > 详细

MSCRM CRM 获取PickList 字段值函数解决方案

时间:2016-04-01 12:49:04      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

表单中有很多picklist字段 不想写链接stringmap
代码:

实体ID查询方法:
 SELECT @ObjectTypeCode from Entity  where=‘实体名称‘

调用函数方法:
select getpicklist(‘字段名称‘,字段值,实体ID)

--@AttributeName 字段名称
--@AttributeValue 字段值
--@ObjectTypeCode 实体ID
create function GetPickList(
@AttributeName varchar(100),
@AttributeValue int,
@ObjectTypeCode int
)
returns varchar(100)
as
begin
declare @value varchar(100)
 SELECT @value=Value FROM StringMap  where  AttributeName=@AttributeName AND AttributeValue=@AttributeValue and ObjectTypeCode=@ObjectTypeCode 
 return @value
end

 

MSCRM CRM 获取PickList 字段值函数解决方案

标签:

原文地址:http://www.cnblogs.com/guozh-bk/p/5344417.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!