Tally Reports are always open in Details mode.

Discussion in 'Tally Integration' started by Bhushan Cellica, Dec 30, 2019.

    

  1. By Default all tally reports open in "Condensed" view and if we need to check details then we use "ALT + F1".

    We are exporting data from Tally ERP 9 in our third party application using HTTP XML request.
    But after exporting data using it, all Tally Reports are getting open in "Details" mode.

    Following is the sample XML request we are using, please suggest which statement changes the default Tally Settings,
    Code:
    <ENVELOPE>
    <HEADER>
    <VERSION>1</VERSION>
    <TALLYREQUEST>Export</TALLYREQUEST>
    <TYPE>Data</TYPE>
    <ID>Stock Summary</ID>
    </HEADER>
    <BODY>
    <DESC>
    <STATICVARIABLES>
    <EXPLODEFLAG>YES</EXPLODEFLAG>
    <EXPLODEALLLEVELS>YES</EXPLODEALLLEVELS>
    <SVEXPORTFORMAT>$$SysName:XML</SVEXPORTFORMAT>
    <SVCURRENTCOMPANY>Demo Company</SVCURRENTCOMPANY>
    </STATICVARIABLES>
    </DESC>
    </BODY>
    </ENVELOPE>
    
    Thanks in Advance.

    Bhushan Akole
     



  2. Please guide me to address this issue.

    Due to this all reports in Tally ERP 9 are always opens in Details View and it's annoying to clients who do not want to check details.

    Thanks,
    Bhushan Akole.
     


  3. teja varma

    teja varma Active Member


    <STATICVARIABLES>
    <SVEXPLODEFLAG>YES</SVEXPLODEFLAG>
    </STATICVARIABLES>
     



  4. Thanks for your reply.
    But using "<SVEXPLODEFLAG>" tag we are not getting expected result, which we are getting using "<EXPLODEFLAG>" xml tag.

    Thanks again,
    Bhushan Akole.
     


  5. teja varma

    teja varma Active Member


    i think the problem is after exporting using xml request all the reports will view in detailed mode
    because you modifying the global (system) variable so for that session reports will be in detailed mode
    a restart should be needed in order to get normal view.............
     


  6. balajimg

    balajimg Active Member


    Use
    <SVEXPLODEFLAG>NO</SVEXPLODEFLAG>

    instead of <SVEXPLODEFLAG>YES</SVEXPLODEFLAG>
     


Share This Page