The length of the first and last names

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;







up vote
2
down vote

favorite












There is a Name field of type Name in Contact object. It consists of FirstName and LastName. I can query those two fields using Apex.



Even though I cannot find any proofs in Object Manager of that, I am sure that FirstName and LastName have Text type.



Now I would like to know how many characters they accept (i.e. if their type is Text(n) I would like to know what value does n have). I tried to use Object Manager to find that out, but there seems to be no info about this. And also, when I go to edition of Name field it tells you nothing useful on FirstName and LastName fields.



So, what is the length of FirstName and LastName fields?



Thank you.



enter image description here



enter image description here










share|improve this question



























    up vote
    2
    down vote

    favorite












    There is a Name field of type Name in Contact object. It consists of FirstName and LastName. I can query those two fields using Apex.



    Even though I cannot find any proofs in Object Manager of that, I am sure that FirstName and LastName have Text type.



    Now I would like to know how many characters they accept (i.e. if their type is Text(n) I would like to know what value does n have). I tried to use Object Manager to find that out, but there seems to be no info about this. And also, when I go to edition of Name field it tells you nothing useful on FirstName and LastName fields.



    So, what is the length of FirstName and LastName fields?



    Thank you.



    enter image description here



    enter image description here










    share|improve this question























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      There is a Name field of type Name in Contact object. It consists of FirstName and LastName. I can query those two fields using Apex.



      Even though I cannot find any proofs in Object Manager of that, I am sure that FirstName and LastName have Text type.



      Now I would like to know how many characters they accept (i.e. if their type is Text(n) I would like to know what value does n have). I tried to use Object Manager to find that out, but there seems to be no info about this. And also, when I go to edition of Name field it tells you nothing useful on FirstName and LastName fields.



      So, what is the length of FirstName and LastName fields?



      Thank you.



      enter image description here



      enter image description here










      share|improve this question













      There is a Name field of type Name in Contact object. It consists of FirstName and LastName. I can query those two fields using Apex.



      Even though I cannot find any proofs in Object Manager of that, I am sure that FirstName and LastName have Text type.



      Now I would like to know how many characters they accept (i.e. if their type is Text(n) I would like to know what value does n have). I tried to use Object Manager to find that out, but there seems to be no info about this. And also, when I go to edition of Name field it tells you nothing useful on FirstName and LastName fields.



      So, what is the length of FirstName and LastName fields?



      Thank you.



      enter image description here



      enter image description here







      contact fields object setup






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 28 at 12:43









      oobarbazanoo

      16010




      16010




















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          3
          down vote



          accepted










          A quicker way to do that is to use describe call in Apex.



          System.debug(Account.FirstName.getDescribe().length); //Prints 40
          System.debug(Account.LastName.getDescribe().length); //Prints 80


          It also works for All fields standard and custom.



          That being said, you can use global describe to get lengths of all fields.



          Src : https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_dynamic_describe_objects_understanding.htm






          share|improve this answer



























            up vote
            4
            down vote













            you can check details about fields on Contact SOAP API guide



            FirstName - The contact’s first name up to 40 characters.



            LastName - Required. Last name of the contact up to 80 characters.






            share|improve this answer




















              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "459"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f240798%2fthe-length-of-the-first-and-last-names%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              3
              down vote



              accepted










              A quicker way to do that is to use describe call in Apex.



              System.debug(Account.FirstName.getDescribe().length); //Prints 40
              System.debug(Account.LastName.getDescribe().length); //Prints 80


              It also works for All fields standard and custom.



              That being said, you can use global describe to get lengths of all fields.



              Src : https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_dynamic_describe_objects_understanding.htm






              share|improve this answer
























                up vote
                3
                down vote



                accepted










                A quicker way to do that is to use describe call in Apex.



                System.debug(Account.FirstName.getDescribe().length); //Prints 40
                System.debug(Account.LastName.getDescribe().length); //Prints 80


                It also works for All fields standard and custom.



                That being said, you can use global describe to get lengths of all fields.



                Src : https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_dynamic_describe_objects_understanding.htm






                share|improve this answer






















                  up vote
                  3
                  down vote



                  accepted







                  up vote
                  3
                  down vote



                  accepted






                  A quicker way to do that is to use describe call in Apex.



                  System.debug(Account.FirstName.getDescribe().length); //Prints 40
                  System.debug(Account.LastName.getDescribe().length); //Prints 80


                  It also works for All fields standard and custom.



                  That being said, you can use global describe to get lengths of all fields.



                  Src : https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_dynamic_describe_objects_understanding.htm






                  share|improve this answer












                  A quicker way to do that is to use describe call in Apex.



                  System.debug(Account.FirstName.getDescribe().length); //Prints 40
                  System.debug(Account.LastName.getDescribe().length); //Prints 80


                  It also works for All fields standard and custom.



                  That being said, you can use global describe to get lengths of all fields.



                  Src : https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_dynamic_describe_objects_understanding.htm







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 28 at 12:53









                  Pranay Jaiswal

                  12.2k32251




                  12.2k32251






















                      up vote
                      4
                      down vote













                      you can check details about fields on Contact SOAP API guide



                      FirstName - The contact’s first name up to 40 characters.



                      LastName - Required. Last name of the contact up to 80 characters.






                      share|improve this answer
























                        up vote
                        4
                        down vote













                        you can check details about fields on Contact SOAP API guide



                        FirstName - The contact’s first name up to 40 characters.



                        LastName - Required. Last name of the contact up to 80 characters.






                        share|improve this answer






















                          up vote
                          4
                          down vote










                          up vote
                          4
                          down vote









                          you can check details about fields on Contact SOAP API guide



                          FirstName - The contact’s first name up to 40 characters.



                          LastName - Required. Last name of the contact up to 80 characters.






                          share|improve this answer












                          you can check details about fields on Contact SOAP API guide



                          FirstName - The contact’s first name up to 40 characters.



                          LastName - Required. Last name of the contact up to 80 characters.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 28 at 12:46









                          Oleksandr Berehovskiy

                          9,16131937




                          9,16131937



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Salesforce Stack Exchange!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.





                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                              Please pay close attention to the following guidance:


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f240798%2fthe-length-of-the-first-and-last-names%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown






                              Popular posts from this blog

                              How to check contact read email or not when send email to Individual?

                              Bahrain

                              Postfix configuration issue with fips on centos 7; mailgun relay