Need udf help

Discussion in 'Tally Developer' started by mutharasan, May 12, 2015.

    
  1. mutharasan

    mutharasan Member


    All TDL Experts,

    please Help me!

    I have created a Logical Udf in All ledgers. I have 300 Ledgers in the company, I need to give the value "yes" to that Udf for all the 300 ledgers. I used the code set As : "yes" But the udf value does not change. Is there any way to push the "yes" value for all ledgers for that UDF. If is it possible please help me.

    Thanks in Advance.
     


  2. D Lokesh

    D Lokesh Member


    Hi Mutharasan,

    TRY This.....

    [#Menu : GateWay of Tally]

    Add : Button : Ledger Update

    [Button : Ledger Update]

    Key : F7
    Title : "Update"
    Action : Call : Ledger Update
    Inactive : Not ($$IsOwner or $$InCreateMode)

    [Collection : Ledgers Col]

    Type : Ledger

    [Function: Ledger Update]

    Variable : LedName : String

    100 : Walk Collection : Ledgers Col
    101 : Set : LedName : $Name

    103 : Modify Object : (Ledger, ##LedName).MAILINGNAME[1].MAILINGNAME : ##LedName

    106 : End Walk
    107 : Msg Box : "Status" : "Ledger Mailing Name Sucessfully Completed............"
     


  3. D Lokesh

    D Lokesh Member


    Hi

    Replace

    103 : Modify Object : (Ledger, ##LedName).UDFName : Yes
     


Share This Page