
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,
Hello ShaqAX,
The format of Web API property name is _<name>_value. And <name> is the single-valued navigation property.
Please refer to these docs:
docs.microsoft.com/.../query-data-web-api
docs.microsoft.com/.../web-api-types-operations
If you are using default entities, you can get them here: