Hi all,
This is probably not directly a Field Service question, but since I am using it and it is and issue with my table in it, so I give a try.
So I ran to a problem whereby I need to specify a WEB API Property name in my Javascript when using function RetrieveMultipleRecords. The error is similar like this blog :
when it is mentioned something like this :
The Error was because,In Filter section
var filterOptions = "?$select=bupa_medicallineid&$filter=bupa_MedicalRecord eq '" + RecordId + "
I was using Navigation name, instead we have to used Web API Property Name.
var filterOptions = "?$select=bupa_medicallineid&$filter=_bupa_medicalrecord_value eq '" + RecordId + "
So what is this Web API property name ? and how would I get it ?
Thanks in advance,