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])
This fixed my issue in Power BI Desktop, thank you!
But now when I upload it to my Power BI dashboard and run it, it bombs out still. Any ideas?
- Commisions_Sales_Line_Detail_ExcelThe OData connector failed with the following error: We cannot convert the value null to type Logical..
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?
- OutofSpec1 year agoFrequent Visitor
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.