Hi All!
Adding an order to your data fetch from SAP in VB.NET using ERPConnect's ReadTable isn't straightforward. ReadTable is great for grabbing data but not for sorting it like you'd do in a SQL query. It is designed primarily for data extraction and not query manipulation!
- Your solution could be to use a custom SAP Function Module - requires some development from your SAP team.
- Or you could Handle less data in each call by adding a filter.
Can you add a filter on the month and add a loop in your BR?
- You add a filter on month, like Jan to June.
- You run this call and it imports Jan to June data (so your volume gets divided by 2 in theory)
- You write those values in a data table
- You do a second call for data from July to December
- You add those value to the data table...
Obviously you could reduce the volume if you loop with entities, or even doing month by month...
Hope it helps,
Nic