Is there a way to do "chunking" of big results into several smaller parts with SAP-RFC?
According to these links it seems like you need to implement chunking yourself :-(
I would like to avoid this, and I hope that there is a way let SAP-RFC library do the chunking.
Use case:
The result are 100k rows. I would like to fetch 1k rows until all rows are received.
I guess it does not matter much, but I will use PyRFC for my code.
According to this issue #60 sap-rfc can't do chunking. You need to make several smaller RFC calls.
That's sad. I guess there are several hundred dirty homegrown chunking solutions in proprietary closed source which all do solve the same thing over and over again.