Posts in this category.
Oct 12, 2024
We always love SQL4CDS by Mark Carrington. One of its features is using the TDS (Tabular Data Stream) Endpoint for reading data. On one of the cron jobs, I have a logic to aggregate the sum of the data. Although I was using SQL4CDS Engine to retrieve the data, I observed the...
Jun 29, 2024
Lately, I've been exploring "not-so-new" requirements where I want to download SSRS reports from Dataverse and use them elsewhere (if you want to use the low-code method, you also can read Nick Hance's blog post that implements the same thing. The difference here is I'm using...
Apr 15, 2023
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...
May 18, 2018
Now we prepare our WCF Service first. I created a new WCF Application Service. Then for demo purposes, I create a simple method for returning dummy data: [code language="csharp"] public MemberValue[] Test(int number) { return new[] { new MemberValue { Member = "Temmy", Status =...