I am using the following XML request to fetch a voucher from Tally based on Date and Narration, Now, I need to add an additional filter for Amount along with these criteria. I would really appreciate if some help it to modify the XML to achieve this.
<>
<?xml version="1.0" encoding="UTF-8"?>
<ENVELOPE>
<HEADER>
<VERSION>1</VERSION>
<TALLYREQUEST>EXPORT</TALLYREQUEST>
<TYPE>Object</TYPE>
<SUBTYPE>VOUCHER</SUBTYPE>
<ID TYPE="Name">Date:'20250101':Narration:'bbbbbbbbbbbbbbbbbbbbb'</ID>
</HEADER>
<BODY>
<DESC>
<STATICVARIABLES>
<SVCURRENTCOMPANY>LK</SVCURRENTCOMPANY>
<SVEXPORTFORMAT>$$SysName:XML</SVEXPORTFORMAT>
</STATICVARIABLES>
<FETCHLIST>
<FETCH>Date</FETCH>
<FETCH>VoucherNumber</FETCH>
<FETCH>VoucherTypeName</FETCH>
<FETCH>Amount</FETCH>
<FETCH>PartyLedgerName</FETCH>
<FETCH>Narration</FETCH>
</FETCHLIST>
</DESC>
</BODY>
</ENVELOPE>