The length of the first and last names
Clash 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.
contact fields object setup
add a comment |
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.
contact fields object setup
add a comment |
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.
contact fields object setup
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.
contact fields object setup
contact fields object setup
asked Nov 28 at 12:43
oobarbazanoo
16010
16010
add a comment |
add a comment |
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
add a comment |
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.
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Nov 28 at 12:53
Pranay Jaiswal
12.2k32251
12.2k32251
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Nov 28 at 12:46
Oleksandr Berehovskiy
9,16131937
9,16131937
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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