이 쿼리로 가져오고 자하는 레코드가 5000 개를 초과하지만 매번 null 값을 가진 쿠키를 얻습니다. 링크 된 엔티티가 문제라는 것을 깨달았습니다. 쿠키를 제거 할 때마다 매번 쿠키가 생기기 때문입니다.CRM FetchXML에서 5000 개가 넘는 레코드를 가져옵니다.
<fetch version="1.0" mapping="logical" distinct="true" page="1" count="2000" >
<entity name="listmember" >
<link-entity name="contact" from="contactid" to="entityid" alias="c" >
<attribute name="contactid" />
<attribute name="telephone1" />
<link-entity name="phonecall" from="ic_customer" to="contactid" alias="pc" link-type="outer" distinct="true">
<attribute name="activityid" />
<filter type="and" >
<filter type="or" >
<condition attribute="statuscode" operator="eq" value="1" />
<condition attribute="ic_end" operator="on-or-after" value="2016-11-12" />
</filter>
</filter>
</link-entity>
<filter type="and" >
<condition attribute="statecode" operator="eq" value="0" />
<condition attribute="telephone1" operator="not-null" />
<condition attribute="donotphone" operator="eq" value="0" />
</filter>
</link-entity>
<filter type="and" >
<condition attribute="listid" operator="in" >
<value>
{f89087ef-7017-e611-80e3-5065f38a3951}
</value>
</condition>
<condition entityname="pc" attribute="activityid" operator="null" />
</filter>
</entity>
</fetch>
누구나이 요청으로 페이징 쿠키를 얻는 방법을 알고 있습니까?
시도 코드를 설명합니다. – Gahan