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
Post a Comment