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
irisiris 

INVALID_FIELD: No such column 'meifYouCan' on entity 'case'.

Hi,
 
I am getting INVALID_FIELD: No such column 'meifYouCan' on entity 'case'. when I try to update the case Object.    SaveResult[] saveResults = binding.update(cases);
I am using API version 7.0
 
Any pointers in helping to resolve this?
 
thanks
Iris
 
SaurabhRawaneSaurabhRawane

First check whether the field exits inside salesforce for the case entity,if it exits then ensure that you append '__c' for each custom created field,that is your field name will be like 'meifYouCan__c'.

Let me know if this doesnt works...!!!