TDL HELP

Discussion in 'Tally Developer' started by PRAPTI, Jul 6, 2019.

    
  1. PRAPTI

    PRAPTI Member


    In this TDL , I want to select the party name and address from the part where these two things are shown. What to write for that??
    Code:
    [#Part: VCHTitle2Left]
    Add:Line:After:VCH Ref:address
     
      [Line: address]
      Add: Field: address
      Invisible: Not (@@IsPurchase Or @@IsSales)
    
       [Field: address]
       Fields  : Simple Prompt, Name Field
       Local   : Field : Simple Prompt: Set as  : "Party Address:"  
       Local : Field : name Field : Set as : $$FullList:BasicBuyerAddress:$BasicBuyerAddress
       Local   : Field : Default           : Skip      : Yes
    
    
    
    [#Part: VCHTitle2Left]
    Add:Line:After:VCH Ref:name
     
      [Line: name]
      Add: Field: name
      Invisible: Not (@@IsPurchase Or @@IsSales)
    
       [Field: name]
       Fields  : Simple Prompt, Name Field
       Local   : Field : Simple Prompt: Set as  : "Party Name:"  
       Local : Field : name Field : Set as : @@SimpleOtherPartyName
       Local   : Field : Default           : Skip      : Yes
     


  2. sivam

    sivam Active Member


    Use Table in Field Level to select Address or Party Name
     


  3. PRAPTI

    PRAPTI Member


    SO, what to write in that?
     


  4. teja varma

    teja varma Active Member


    what you want?
    weather you want to show full list of party address in one line or what
     


  5. PRAPTI

    PRAPTI Member


    In Accounting Voucher, where the name and address of the party is shown with this tdl, I want to have the list of all the ledgers there..
     


  6. teja varma

    teja varma Active Member


    you can use like this to get list of all ledgers as table for the field

    [Field:yourfield]
    Table:List of Ledgers, Not Applicable
    Background:white
    Use:NameField
    Storage:yourstorage
    Show Table:Always


    [system:udf]
    yourstorage:String:5689
     


Share This Page