IT Technical Support for Developers

Tally Integration Capabilities

Share

How to Fetch Tally Products Price List Using xml request

Tally Interfaces – Item wise Price list XML Sample Code

How to Export Item wise Name,Closing stock,Value and Price from tally using XML TAGS via http

How to fetch the "price list" from tally using http xml request.

<ENVELOPE>
  <HEADER>
      <VERSION>1</VERSION>
      <TALLYREQUEST>Export</TALLYREQUEST>
      <TYPE>Collection</TYPE>
      <ID>All items under Groups</ID>
  </HEADER>
 <BODY>
  <DESC>
   <STATICVARIABLES>
            <SVCURRENTCOMPANY>company</SVCURRENTCOMPANY>   
            <SVEXPORTFORMAT>$$SysName:XML</SVEXPORTFORMAT>
         </STATICVARIABLES>  
   <TDL>
    <TDLMESSAGE>
     <COLLECTION NAME="All items under Groups" ISMODIFY="No">
      <TYPE>stock item</TYPE>     
      <FETCH>Name,Parent,BaseUnits,ClosingBalance,ClosingRate,
ClosingValue,FULLPRICELIST</FETCH>
     </COLLECTION>    
    </TDLMESSAGE>
   </TDL>
  </DESC>
 </BODY>
</ENVELOPE>

Sample code for above xml integration with php, asp, .net
How to integrate PHP with Tally ,
How to integrate .net with Tally

Hits: 3653, Rating : ( 5 ) by 1 User(s).