Hello,
I know in Java you can use PagingQueryOptions and a getPagedQuery to split the query into multiple paged queries.
In the docs for 4.x I found the PagingQueryOptions in the CrystalDecisions.sdk.Uri.dll library, but not paging options.
After some further investigation the java docs show this was deprecated in 4.0 and replaced with an ICMSQuery.
The closest thing I can find to paging queries is in the BusinessObjects.Enterprise.InfoStore.IInfoStore class there is an exposed interface for PagingQuery. But the standard CrystalDecisions.Enterprise.InfoStore does not have this and I don't think you can't cast the IInfoStore to InfoStore.
as for the replacement ICMSQuery class, I am not sure where to look for that or how to use it as I don't see any reference outside the Java docs for it.
Is it possible to do Paging Queries in the .NET SDK in 4.1?
Thank you.