0
votes

I have created a record in a custom entity with a plug-in.
The record shows in the view for the entity,
but not in XRMServices entity set!
There are many other records in the set that I can view from

OrganizationData.svc/{!entitylogicalname}Set

Why would records be visible in the view for active records, but not in the entity set?

The entity has no custom fields and was created with

IOrganizationService.Create({early_bound_entity});
1

1 Answers

0
votes

I suppose that only 50 records are shown? This is default maximum number of records for retrieving with OData query. You can increase this number (check this two links).

If you are using SDK.REST.js, method RetrieveMultipleRecords will handle this.

Hope this helps :)