Forum Discussion
undefinedPower BI error NULL
- 1 year ago
The latest version of the connector no longer permits the 4th parameter to be null.
Please try the following solution:
Before:
Dynamics365BusinessCentral.ApiContentsWithOptions(null, null, null, null)After:
Dynamics365BusinessCentral.ApiContentsWithOptions(null, null, null, [UseReadOnlyReplica = null])
I'm trying to publish a PBIX from the desktop with the fix applied "[UseReadOnlyReplica = null]", however I'm getting this error...
ServerError_CloudStorageBlobStorageServerException
when I force a manual refresh in the Power BI Service after the publish. Any suggestions?
I changed "[UseReadOnlyReplica = null]" to "[UseReadOnlyReplica = true]" and was able to get pass that error.
- poggid1 year agoRegular Visitor
That worked. Thank you!
- Aditi_1 year agoNew Member
I used this solution and it fixed my issue. Do u think these two [UseReadOnlyReplica = null]" to "[UseReadOnlyReplica = true] can result in different outputs.
- Dejan-Pajk1 year agoAdvocate II
Hi Aditi_ , I believe the default value of UseReadOnlyReplica is true; therefore the 'null' or 'true' will result in the same data refresh performance.