Donate. I desperately need donations to survive due to my health

Get paid by answering surveys Click here

Click here to donate

Remote/Work from Home jobs

Export Item-wise stock summary from Tally ERP 9 Using Pagination Query

I have got stock summary query from below link

https://www.rtslink.com/articles/tally-xml-tags-export/

<!--THIS WILL FETCH STOCK SUMMARY DETAILS PROGRAMMATICALLY-->
<!--Gateway of Tally @Stock Summary @F5 @Alt+F1-->
<ENVELOPE>
<HEADER>
<TALLYREQUEST>Export Data</TALLYREQUEST>
</HEADER>
<BODY>
<EXPORTDATA>
<REQUESTDESC>
<STATICVARIABLES>

<!--Detailed format-->
<EXPLODEFLAG>YES</EXPLODEFLAG>

<!--Item-wise report-->
<ISITEMWISE>YES</ISITEMWISE>

</STATICVARIABLES>
<REPORTNAME>Stock Summary</REPORTNAME>
</REQUESTDESC>
</EXPORTDATA>
</BODY>
</ENVELOPE>

I am receiving all stock item all at once, how can i limit the response so that i can paginate the xml reponse and reduce the server load.

Comments