I rarely create/update reports. And to be honest, my knowledge actually stuck on creating reports using "Report Builder" which at that time we still used the On-Premise version to query the things we needed to make the report. While the latest version uses Fetch XML and forces us to basically install the extension that we … Continue reading How to install Dynamics 365 Report Authoring Extension from Scratch
Category: Ssrs
Consume WCF from SSRS Report
Now we prepare to create our WCF Service. I create a new WCF Application Service. Then for demo purpose, I create a simple method for return dummy data: public MemberValue[] Test(int number) { return new[] { new MemberValue { Member = "Temmy", Status = "Active"}, new MemberValue { Member = "Low Ming Hua", Status = "Active"}, … Continue reading Consume WCF from SSRS Report