What is the correct reference for the Note entity when using OData? I'm trying to use OData SDK.jquery.RetrieveRecord function to query the Note entity (schema name "Annotation") however I get error message "Error : 404: Not Found: Resource not found for the segment 'AnnotationSet'.
Here is the code I'm using. productID is a GUID and "abpm_producto_Annotations" is the 1:N relationship.
SDK.JQuery.retrieveRecord(productID, "Annotation", "abpm_producto_Annotations", null, function (result) {
if (result != null) {
//A note is attached
}
},
errorHandler);