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])
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])
Thanks Dejan-Pajk, I use webservices from Business Central with following code.
Appreciate if you could suggest a resolution on this?
Source = Dynamics365BusinessCentral.EnvironmentContents(null, null)
Thanks and Regards,
SM
- Shaishavm1 year agoAdvocate I
Hi Dejan-Pajk thanks a ton for the solution. Work-around is working fine. I also noticed that Microsoft has released an incident request acknowledging the bug and that they are working on a fix.