Hi,
we created solution in instance with English base language, and import it in other instance with German base language. In new instance updating Entity field failed with error: "Plugin execution error: Sequence contains no matching element".
Creating and deleting entity record works fine.
Trying to update field "statuscode".
var entity = {};
entity.statuscode = 559400002;
Xrm.WebApi.online.updateRecord("ibdyncrm_vibertemplate", "45810925-60e8-ea11-a817-000d3ac1f4f5", entity).then(
function success(result) {
var updatedEntityId = result.id;
},
function(error) {
Xrm.Utility.alertDialog(error.message);
}
);
Does anyone have some idea what is going wrong?
Thanks