how to get field value in my report

Discussion in 'Tally Developer' started by sandip kumar, Sep 10, 2020.

    
  1. sandip kumar

    sandip kumar New Member



  2. PANKAJ BHONDLE

    PANKAJ BHONDLE Active Member


    ADD:New Form
    Next: Variable Set
    then: Field Value :Set as:##VariableName
     


  3. PANKAJ BHONDLE

    PANKAJ BHONDLE Active Member


    or : Voucher Entry Level UDF Set
    then Field Value:Set As:$UdfValue
     


  4. Amit Kamdar

    Amit Kamdar Administrator Staff Member


    Simple.....$date will do.....

    Compute the Date in your new report's collection.
     


  5. Himanshu-2002

    Himanshu-2002 Active Member


    Create a Collection Which Will Contain All Sales Voucher

    Example:

    [Collection: MySalesVouchersColl]
    Type:Vouchers:VoucherType
    Child Of:$$VchTypeSales
    Belongs To:Yes

    Now, Walk in The Collection

    [Collection:Sales AllVoucher]
    Source Collection: MySalesVouchersColl
    Walk:Inventory Entries
    Compute : MyPartyVchNo :$VoucherNumber
    Compute : MyPartyDate :$Date
    Compute : MyPartyName :$PartyLedgerName

    How To Use It in Field?

    Example:

    [Field: MyField]
    Set As : $MyPartyDate
     
    sanju1975 likes this.


  6. sandip kumar

    sandip kumar New Member


    Thankyou All, But my problem is, i have loaded one tcp compiled file in tally provided by authorised distubutor of tally in nepal, which shows nepali date in any reports like daybook, ledger reports etc. but i want this field in my report
     


  7. Amit Kamdar

    Amit Kamdar Administrator Staff Member


    Find the field name and UDFname from your developer and use it, as directed above.
     


  8. Himanshu-2002

    Himanshu-2002 Active Member


    If You can't find the field name then Create that report Sir, That is a very simple report and You are using tally in developer mode So, I am sure that you know Tally Definition Language Very Well
     



  9. Dear Sandip Jee

    Try this :

    $VchNepDate
     


  10. Himanshu-2002

    Himanshu-2002 Active Member


    Gopal Sir, I think he is using a TCP File means He can't edit the File because It is written in Encrypted ASCII Code Or Base64 I don't know exactly.....which is also known Machine Language
     



  11. Yes, tcp file can't be edited. But if you know the UDF Name, you can use it in your customized report.
     


  12. sandip kumar

    sandip kumar New Member


    Thank you Everybody.........now its working .......$$CollectionFieldByKey:$NepDate:$date:MIGetNepDate
     


  13. Mithun Das

    Mithun Das New Member


    C
    Can you please share complete code for getting field value Nepali date in report?? Please reply or mail at mcdasnp@gmail.com
     


Share This Page