当前位置: 首页 > news >正文

在D365 CRM中 实体的Lookup View ,在lookup field的form上配置lookup view,显示少于25条,比如3条

背景:在D365 CRM中 实体的Lookup View ,在lookup field的form上配置lookup view,但是form上显示记录条数默认最多是25条。问题是:想显示少于25条,比如3条。但是想显示多于25条,这个方法不好使。

直接修改savedquery中lookup view记录中的fetchxml字段内容,添加 count="3"。

ab6d2-****-04c73300:是查询出来的Lookup View ID。

select top 11 savedqueryid,* from savedquery where name like 'entity display name lookup view'

select top 11 name,savedqueryid,fetchxml,* from savedquery where savedqueryid='ab6d2-****-04c73300'

查询出来fetchxml字段的内容,添加 count="3"

update savedquery set fetchxml='<fetch version="1.0" count="3" output-format="xml-platform" mapping="logical" distinct="false" savedqueryid="ab6d2-****-04c73300"><entity name="a_test"><attribute name="a_msid"/><attribute name="a_name"/><attribute name="a_code"/><order attribute="a_name" descending="false"/></entity></fetch>'

where savedqueryid='ab6d2-****-04c73300'

更新数据之后要 publish all customizations


文章转载自:
http://antiquarianism.dxwdwl.cn
http://advertize.dxwdwl.cn
http://arboriculture.dxwdwl.cn
http://caesarean.dxwdwl.cn
http://allotheism.dxwdwl.cn
http://articulatory.dxwdwl.cn
http://beforetime.dxwdwl.cn
http://acceptable.dxwdwl.cn
http://burrito.dxwdwl.cn
http://buckboard.dxwdwl.cn
http://calcitonin.dxwdwl.cn
http://buskin.dxwdwl.cn
http://apprehensive.dxwdwl.cn
http://buxom.dxwdwl.cn
http://chalone.dxwdwl.cn
http://benediction.dxwdwl.cn
http://alburnous.dxwdwl.cn
http://abm.dxwdwl.cn
http://arbitrate.dxwdwl.cn
http://branchia.dxwdwl.cn
http://affricate.dxwdwl.cn
http://bazar.dxwdwl.cn
http://barbule.dxwdwl.cn
http://callisection.dxwdwl.cn
http://celloidin.dxwdwl.cn
http://amazingly.dxwdwl.cn
http://checksummat.dxwdwl.cn
http://assembled.dxwdwl.cn
http://cercopithecoid.dxwdwl.cn
http://autocritical.dxwdwl.cn
http://www.dtcms.com/a/77786.html

相关文章:

  • 【Auto-Scroll-List 组件设计与实现分析】
  • GitHub 超火的开源终端工具——Warp
  • Python 小数/浮点数(float)大全
  • 网络协议抓取与分析(SSL Pinning突破)
  • 谷歌or-tools开源库入门
  • 【大模型实战篇】多模态推理模型Skywork-R1V
  • CSS三大特性、显示模式、背景与书写顺序
  • XSS 绕过分析:一次循环与两次循环的区别
  • 【Java集合夜话】第2篇:Collection家族,一场优雅的探索之约
  • 第四节:sqlx库使用指南
  • 876.链表的中间节点
  • Mysql中事务的隔离级别以及实现原理
  • [node] 4 http模块
  • skywalking微服务链路追踪
  • 小白电路设计-设计2-可调式单电源直流稳压电路设计
  • Python实战(2)-数据库支持
  • numpy学习笔记14:模拟随机游走过程
  • hadoop-HDFS操作
  • 【链表】一文搞定链表算法:从基础到实战
  • 人工智能:如何把excel中某数据区域中,含有空格数据的单元格标记背景颜色出来?
  • S32K144外设实验(二):ADC单通道单次采样(软件触发)
  • 《Linux:动态库动态链接与静态库静态链接》
  • 声动未来,门店数字化助力韶音加速破圈
  • 4. 移动到末尾(蓝桥云课)
  • stm32第七天震动传感器
  • Java 文件和IO流基础(生动形象版)
  • 进程间通信(1)——管道
  • Android AI ChatBot-v1.6.3-28-开心版[免登录使用GPT-4o和DeepSeek]
  • 深入理解Java内存模型(JMM)及其并发编程中的应用
  • 「JavaScript深入」WebSocket:高效的双向实时通信技术