You dont have javascript enabled! Please enable it! Field and Field Value : Part I |
You cannot view this unit as you're not logged in yet.

37 thoughts on “Field and Field Value : Part I

  1. Hanif shaikh says:

    Thank You very much you allow me to continue after a long gap
    I have started once again and learning my missing chapters
    Thanks

    1. Hello Hanif,
      Welcome back to the school.Yes, having a lifetime access is very beneficial because we all are busy people and having full time job/business or other priorities which needs our immediate attentions.

      I am glad that you are restarting it.Do let me know if you need any support or help.

  2. Virat Mehta says:

    [#Part: ledcontact]
    Add: Line: ledmasterline

    [Line: ledmasterline]
    Field: my field

    [Field: my field]
    Use: name field
    ;;Set as: $$Value
    Set as: $$LocaleString: “hardey”

    its not proper

  3. vivek.j.ca says:

    [#Part : LedContact]
    Add: Line: LedMasterLine

    [Line: LedMasterLine]
    Field : FF1,FF2,FF3
    [Field:FF1]
    Local: Field: FF1: Set as:$$LocaleString:”Enter your name here”
    ;;Local: Field: FF1: Info:$$LocaleString:”Enter your name here”
    [Field:FF2]
    Use: Name Field
    Set as: $$Value

    [Field:FF3]
    Use: Name Field
    Set as:#FF2
    Set Always: Yes
    The above code is showing error, its not showing the field value “Enter your name here”

  4. deepakagrawal23 says:

    Dear sir,
    What is the use of $$LocaleString or $$Value
    below code is also giving the same result :
    [Field: My Field]
    Use: Name Field
    ;;Set as: $$Value
    ;; Set as: $$LocaleString:”Myname is Deepak”
    Set as: “My Name Is Deepak Agrawal”
    Skip:Yes
    if we can directly write set as: “My Name is deepak agrawal”, then what is the significance of $$localstring and $$ Value

    1. Hello Deepak,
      Your first priority is to get familiar with the codes and see how it works in action.
      use them, make yourself familiar with then move on. Because there is a whole separate chapters on locale-string.
      $$ is used to represent a function and $$localstring is a default TDL function same way $$value is also a default Functions in Tally
      As the same Name Suggest $$value is to get the userinput Whatever value the user input in the field it will be assigned/set
      Again the significance of localstring is explained in its own separate chapter

      In short, they are useful to avoid to write unnecessary codes

      in TDL we can use same codes/field name n times suppose you have 15 lines in a part and all those lines print differenet text like inv no., invoice date etc in that case you have to add 50 new field but you can just use the name field in every line and set that locally to assign the desired value to it.

      Everything can’t be explained in one chapter else it becomes too heavy and to complex to digest so, I explained those things in the later chapter once people make themselves familiar and using them.

  5. SURAJIT SARKAR says:

    [#Part: Ledcontact]
    Add: Line: LedMasterline
    [Line: LedMasterline]

    Field: Name Field, My field
    ;;Local: Field: Name Field: Set as: $$LocaleString: “Enter Name Here”
    ;;Local: Field: Name Field: Skip: Yes
    Local: Field: Name Field: Info: $$LocaleString: “Enter Name Here”
    [Field: My Field]
    Use: Name Field
    Set as: $$Value
    ;;Set as: $$LocaleString: “My name is Surajit”
    ;;Skip: Yes
    But when I run this Programe it show Error” can not understand Bad formula
    $$LocaleString: “Enter Name Here” how can i solve

    1. Surjit,

      I repeatedly telling people that to learn TDL or coding they need a very good reading ability and to review their code again and again.
      $$LocaleString: “Enter Name here”
      You kept a gap here after :
      It should be $$LocaleString:“Enter Name here”
      Also the error message clearly telling where is the mistake

  6. datta3718 says:

    please how to access repeat units field & Field Value Part 1 & 2

  7. PRASHANTHA S says:

    Dear Sir,
    In the field and field value part 1 unit. We have two fields in one line 1) Name field 2) My field
    we defined only My field [Field: My Field] but what about Name field Define and what is this Local code.

  8. Rakesh Nakade says:

    i have completed the session and added one additional attribute added storage at end of the program

  9. Anshul Garg says:

    How to refresh Tdl . I didnt find refresh TDl Button in tally

  10. seema sehrawat says:

    its clear i got to know that UDF is of 6 types by this and educational version do not accept the dates so that tdl won’t work over here

  11. Amit Pandya says:

    Thanks Sir for such a informative video, easy to understand. I want to know how can we add a new field in desired location i.e in between fields? means…want to add Web Name [New Fld] in between Fax No & Email in LedContact Area, Warm Regards

  12. Amit Pandya says:

    Thanks for such a informative lesson in easy to understand way. I want to know can we add a new field in between fields which are already there? i.e.want to add new field [WebSite Name] in between Fax Number & Email…Warm Regards

  13. Ankit Jallan says:

    When Name Field and $$LocaleString is used, the first character of the Field, even if it is set to a small letter, the First Initial of the words automatically changes to Capital Letters, is it because of name field attribute?? Does Name Field has Sentence Case as its attribute??

  14. deepakagrawal23 says:

    My first question is what is the difference betwee the following :

    set as : “My Name is Deepak”

    set as:$$LocaleString:”My name is Deepak”

    Both the above code dispay the text But what is the actual difference betweent the two.

    What is the relevance of $$LocaleString Function , how the above both lines are differend.
    What effect will $$LocaleString Will have.

  15. deepakagrawal23 says:

    My first question is what is the difference betwee the following :

    set as : “My Name is Deepak”

    set as:$$LocaleString:”My name is Deepak”

    Both the above code dispay the text But what is the actual difference betweent the two.

    What is the relevance of funtion $$LocaleString if we can get the same output without using it.

  16. Varun Babbar says:

    hello sir,

    i want to ask

    ##why we use $$localstring ???

    example-
    [Line: facebook]
    Field: name field, fb
    Local : Field : name field : Set as : $$localstring : “facebook”
    Local : Field : name field : skip : yes

    ##whereas we can code like below (note- i removed $$localstring but its still working)

    [#Part:ledcontact]
    add: Line: facebook

    [Line: facebook]
    Field: name field, fb

    Local : Field : name field : Set as:”facebook”
    Local : Field : name field : skip : yes

    [Field:fb]
    Use:name field
    Storage: fbpage

    [System:UDF]
    fbpage:String:10001

  17. Varun Babbar says:

    /*
    Hello Sir
    i want to ask
    why to use $$localstring,

    whereas without it the code is also working
    please tell me the concept why we use $$localstring

    see my below code it is working without adding $$localstring

    */

    [#Part:ledcontact]
    add: Line: facebook

    [Line: facebook]
    Field: name field, fb

    Local:Field:name field:Set as:”facebook”
    Local:Field: name field:skip: yes

    [Field:fb]
    Use:name field
    Storage: fbpage

    [System:UDF]
    fbpage:String:10001

  18. sandeep.gths says:

    Hello Sir,
    I put code as below, Works properly in tally but my query us how to store information ( E.G. Adhar Card number in my code )

    [#Part:LedContact]
    Add : Line : LedMasterLine

    [Line:LedMasterLine]
    Field:Name Field, My Field
    Local : Field : Name Field : Set as : $$LocaleString:”Adhhar Card No”
    Local : Field : Name Field : Skip : Yes

    [Field: My Field]
    Use : Number Field
    Set as : $$Value

    1. You didn’t added any storage to your field and you didn’t defined any system UDF for the said Storage.
      Please refer the DOB Chapter where we added storage to the DOB Field and then defined the system UDF
      You have to follow the same system to store adhar number.

  19. Satish Bhatia says:

    Sir,
    What is the difference between below two codes, when to use them in different situation.

    Code 1:
    [Field:F1]
    Use:Name Field
    Set as :”I am Learning Tally TDL with Tally Mentors”

    Code 2:
    [Field:F1]
    Use:Name Field
    Set as :$$LocaleString: “I am Learning Tally TDL with Tally Mentors”

  20. Sridharan Rajannan says:

    ** Student Name: Sridharan Rajannnan
    ** Student MaidID: sssvkcasridhar@gmail.com
    ** Student Whatsup No.: +91952455337
    **
    ** This Codes
    */

    [#Part: LedContact]
    Add: Line: LedMasterLine
    [Line: LedMasterLine]
    Field: NameField1, MyField
    /*
    [Field: NameField1]
    Use: Name Field
    Info: “Enter Your Name Here:”
    */

    [Field: NameField1]
    Use: Name Field
    Set as: “Enter Your Name Here:”
    Skip: Yes

    [Field: MyField]
    Use: Name Field
    Set as: $$Value

    1. Sridharan Rajannan says:

      Sir, In the above Code, I omitted $$LocalaString, but still it works as the $$LocalaString present. What is the use of $$LocalaString?

  21. DHANALAKSHMI OSURAN says:

    your vedios are not playing . pls do the needful

  22. Mohammed Karjatwala says:

    Why is Field and Field Value, Part I is not playing any video. It is showing only as an image.

    1. I believe all the vidoes are playing without any issue.
      Did you checked it in another system through a different network?
      Sometimes its your system which can prevent video playing or somthing else
      also clear your cookies, Allow protected contents in your chorme media settings
      also test it througha differnt browser

  23. Mohammed Karjatwala says:

    Some videos are playing, some are not. The earlier video of Comments in writing the code is playing.

Leave a Reply