I have a custom entity. I added a new status reason called "Disable". The status code is "100,000,000".
When updating the statecode and statuscode I get an error message "OrganizationServiceFault".
int stateCode = 0; int statusCode = 100000000; questionEntity["statecode"] = new OptionSetValue(stateCode); //Status questionEntity["statuscode"] = new OptionSetValue(statusCode); //Status reason service.Update(questionEntity);
Any ideal on why this is not working?
*This post is locked for comments