License Building

Discussion in 'Tally Integration' started by Moses, Jun 21, 2012.

    
  1. Moses

    Moses New Member


    Hi,
    How can we restrict our integration tool to run on a specific Tally serial no. What is the xml code.

    Thanks in advance.
     



  2. Hi Moses,

    Please use this.


    Code:
    The following XML Request is required to fetch Tally Serial Number:
    <!-- XML Request -->
    <ENVELOPE>
    <HEADER>
    <VERSION>1</VERSION>
    <TALLYREQUEST>EXPORT</TALLYREQUEST>
    <TYPE>FUNCTION</TYPE>
    <!-- Platform Function Name in Tally.ERP 9 -->
    <ID>$$LicenseInfo</ID>
    </HEADER>
    <BODY>
    <DESC>
    <FUNCPARAMLIST>
    <!-- Parameter for the function LicenseInfo -->
    <PARAM>Serial Number</PARAM>
    </FUNCPARAMLIST>
    </DESC>
    </BODY>
    </ENVELOPE>
     
    The previous XML Request fetches the following XML Response:
    <!-- XML Response -->
    <ENVELOPE>
    <HEADER>
    <VERSION>1</VERSION>
    <STATUS>1</STATUS>
    </HEADER>
    <BODY>
    <DESC>
    </DESC>
    <DATA>
    <RESULT TYPE="Long">790003089</RESULT>
    </DATA>
    </BODY>
    </ENVELOPE>
    
     


  3. Moses

    Moses New Member


    Thanks
     


  4. admin

    admin Administrator Staff Member


    This is very good method. You can have the serial numbers in your database and compare with the serial number returned by Tally.ERP 9 via XML. Compare both and restrict.
     


  5. HVPatel

    HVPatel Active Member


    What TDL Code for use addons for working for 5days or upto a given future date.
     



  6. Hi,

    You Can Give The Control .

    Just Give The Options in Your Customization based on System Date
    Ex. $$MachineDate <=$$Date:"1-July-2012"
     
    Amol Ashok Bhalgat likes this.


  7. HVPatel

    HVPatel Active Member


    Thanks Mr. Dinesh

    I do this to inactive after date over, IS THIS CORRECT CODE ?
    as i have used, its working....

    [System:Formula]
    HPExpiry :$$Machinedate<$$Date:"01/07/2012"

    [#Menu : Gateway of Tally]
    Add : Item : After : Quit : Patel : Display : Patel : @@HPExpiry

    -Hasmukh V Patel
     
    Amol Ashok Bhalgat likes this.


  8. psjain_jal

    psjain_jal Member


    pl explain with tdl code & sample data
     


Share This Page