Dear Community,
I have a question regarding Queries in ABSL. I want to use the execute function with the maximum rows and start rows in order to get a better performance while executing queries.
An example to query BusinessPartners:
varquery = BusinessPartner.QueryByIdentification;
varselPara = query.CreateSelectionParams();
varcontacts = query.Execute(selPara, dummy , maxRowCount, start);
The second Param (dummy) should be the SortingParameters, but there are no sorting Parameters available for the BusinessPartner BO.
Do you have any suggestions to use the maximum row count to execute queries on the BusinessPartner BO?
Kind Regards,
Lukas