Bank Details not Show in ledger contact Alt + C

Discussion in 'Tally Developer' started by ramind007, Dec 31, 2013.

    
  1. ramind007

    ramind007 New Member


    I create a Party Bank Details TDL but can't show in ledger contact plz help

    ;;-------- New Field In Ledger Master

    [#Part : LED Other Details]

    Add : Line : After : LED VATCSTNo : LED BankName
    Add : Line : After : LED BankName : LED BankAccountNo
    Add : Line : After : LED BankAccountNo : LED Branch
    Add : Line : After : LED Branch : LED IFSCode

    [Line : LED BankAccountNo]

    Field : Medium Prompt,LED BankAccountNo
    Local : Field : Medium Prompt : Set As : "Bank Account No. :"

    [Field : LED BankAccountNo]

    Use : Name Field
    Storage : LED BankAccountNo

    [System : UDF]

    LED BankAccountNo : String : 21000

    [Line : LED BankName]

    Field : Medium Prompt,LED BankName
    Local : Field : Medium Prompt : Set As : "Bank Name :"

    [Field : LED BankName]

    Use : Name Field
    Storage : LED BankName

    [System : UDF]

    LED BankName : String : 21001

    [Line : LED Branch]

    Field : Medium Prompt,LED Branch
    Local : Field : Medium Prompt : Set As : "Branch :"

    [Field : LED Branch]

    Use : Name Field
    Storage : LED Branch

    [System : UDF]

    LED Branch : String : 21003

    [Line : LED IFSCode]

    Field : Medium Prompt,LED IFSCode
    Local : Field : Medium Prompt : Set As : "RTGS/ IFSC Code :"

    [Field : LED IFSCode]

    Use : Name Field
    Storage : LED IFSCode

    [System : UDF]

    LED IFSCode : String : 21004

    ;;-------
     

    Attached Files:



  2. mpal2311

    mpal2311 Active Member


    are you a TDL programmer or end user.
     


  3. ramind007

    ramind007 New Member



  4. mpal2311

    mpal2311 Active Member


    It seems that you have simply pasted others developed code here.
     


  5. mpal2311

    mpal2311 Active Member


    If you are a TDL developer you must know that by your TDL it is not possible. You are adding detail in Ledger Masters, but to get the detail at report part you have to write some codes, which being an end user not known to you. As you are doing only copy paste.
     


  6. mpal2311

    mpal2311 Active Member


    Which Version and Release of Tally you are using.
     


  7. ramind007

    ramind007 New Member


    Tally.ERP 9 Release 4.7
     


  8. Raju Das

    Raju Das Member



    Bro here it is......

    [#Part: Ledger Contact]

    add:Lines : After:LCAddress :LCPartyCity,LCPartyDist,LCPartyBankName,LCPartyBankAcNo,LCPartyBankBranch,LCPartyIFSCCode


    [Line: LCPartyBankName]

    Fields : Medium Prompt, Name Field
    Local : Field : Medium Prompt : Set as : $$LocaleString:"Bank Name" + " :"
    Local : Field : Name Field : Set as : $LEDBankName:Ledger:##LedgerName
    Fixed: Yes
    Local : Field : Medium Prompt : Color:Blue
    Local : Field : Name Field :Color:Blue

    [Line: LCPartyBankAcNo]

    Fields : Medium Prompt, Name Field
    Local : Field : Medium Prompt : Set as : $$LocaleString:"Bank Account No." + " :"
    Local : Field : Name Field : Set as : $LEDBankAccountNo:Ledger:##LedgerName
    Fixed: Yes
    Local : Field : Medium Prompt : Color:Blue
    Local : Field : Name Field :Color:Blue
    [Line: LCPartyBankBranch]

    Fields : Medium Prompt, Name Field
    Local : Field : Medium Prompt : Set as : $$LocaleString:"Branch Name." + " :"
    Local : Field : Name Field : Set as : $LEDBranch:Ledger:##LedgerName
    Fixed: Yes
    Local : Field : Medium Prompt : Color:Blue
    Local : Field : Name Field :Color:Blue

    [Line: LCPartyIFSCCode]

    Fields : Medium Prompt, Name Field
    Local : Field : Medium Prompt : Set as : $$LocaleString:"RTGS / IFSC Code." + " :"
    Local : Field : Name Field : Set as : $LEDIFSCode:Ledger:##LedgerName
    Fixed: Yes
    Local : Field : Medium Prompt : Color:Blue
    Local : Field : Name Field :Color:Blue
     
    Puneet Jain likes this.


  9. Puneet Jain

    Puneet Jain New Member


    A little modification in above codes, as it is giving error

    modified codes

    [#Part: Ledger Contact]

    add:Lines : After:LCAddress :LCPartyBankName,LCPartyBankAcNo,LCPartyBankBranch,LCPartyIFSCCode


    [Line: LCPartyBankName]

    Fields : Medium Prompt, Name Field
    Local : Field : Medium Prompt : Set as : $$LocaleString:"Bank Name" + " :"
    Local : Field : Name Field : Set as : $LEDBankName:Ledger:##LedgerName
    Fixed: Yes
    Local : Field : Medium Prompt : Color:Blue
    Local : Field : Name Field :Color:Blue

    [Line: LCPartyBankAcNo]

    Fields : Medium Prompt, Name Field
    Local : Field : Medium Prompt : Set as : $$LocaleString:"Bank Account No." + " :"
    Local : Field : Name Field : Set as : $LEDBankAccountNo:Ledger:##LedgerName
    Fixed: Yes
    Local : Field : Medium Prompt : Color:Blue
    Local : Field : Name Field :Color:Blue
    [Line: LCPartyBankBranch]

    Fields : Medium Prompt, Name Field
    Local : Field : Medium Prompt : Set as : $$LocaleString:"Branch Name." + " :"
    Local : Field : Name Field : Set as : $LEDBranch:Ledger:##LedgerName
    Fixed: Yes
    Local : Field : Medium Prompt : Color:Blue
    Local : Field : Name Field :Color:Blue

    [Line: LCPartyIFSCCode]

    Fields : Medium Prompt, Name Field
    Local : Field : Medium Prompt : Set as : $$LocaleString:"RTGS / IFSC Code." + " :"
    Local : Field : Name Field : Set as : $LEDIFSCode:Ledger:##LedgerName
    Fixed: Yes
    Local : Field : Medium Prompt : Color:Blue
    Local : Field : Name Field :Color:Blue
     
    priya likes this.


Share This Page