Forum Discussion
Datasource Error - Business Central Web Services
- 1 year ago
desac MattRTemcool MaryAnne omgull OttoChr
this solution worked and I've tried itHave you tried the fix on the below link?
https://www.reddit.com/r/PowerBI/comments/1f7yadg/data_conversion_error_on_refresh/
We encountered the same error and by adjusting the 4th parameter on the API call, the problem went awayBefore:
Dynamics365BusinessCentral.ApiContentsWithOptions(null, null, null, null)After:
Dynamics365BusinessCentral.ApiContentsWithOptions(null, null, null, [UseReadOnlyReplica = null])
Hi, We had the same problem.
You can try to change
Dynamics365BusinessCentral.ApiContentsWithOptions(null, null, null, null),
to
Dynamics365BusinessCentral.ApiContentsWithOptions(null, null, null, [UseReadOnlyReplica = null])
- MaryAnne1 year agoNew Member
Fixed it for me too.
Found more explained here:
Solved: The latest version of the connector no longer perm... - Microsoft Fabric Community
- desac1 year agoNew Member
Works. thx