function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
LukeLuke 

Birthday date problem

When I try and insert new contact with a DOB the system discards that field and doesn't populate it.  The rest of the fields get populated without any problems.

What could it be?

Lukasz

DevAngelDevAngel

Hi Luke,

Try setting the birthDateSpecified field to true.

LukeLuke
I did, and still the same problem.
DevAngelDevAngel

Hi Luke,

Are you using the ISO-8601 date format? (YYYY-MM-DDTHH:NN:SS+X  2004-02-13T13:38:24+8)

LukeLuke

I use custom formatting and pass it to the system as mm/dd/yyyy

I do the same thing on opportunities table and it works just fine.

DevAngelDevAngel

Hi Luke,

Sorry for my last question.  In the partner wsdl you would use that formatting.  I just tried it in .Net using

new DateTime(1961, 10, 6); for the assignment and it worked.  Can you try it this way?

 

LukeLuke
Yep... that helped.  Thanks much.