#powerplatform

Posts tagged with this topic.

MDA: Testing JS changes without deploying

Apr 29, 2023

Our routine as Developers, if we get a new task/bug, is "change the code", "deploy", and "validate". For the front scripting, if we don't have the tool to help us update the necessary file easily, we need to open the JS component > update > deploy and publish > then go to the...

Model-Driven-Apps: setup deployment Angular files to Dev using spkl

Feb 5, 2023

Last week, we already learn how to build Angular WebResources to be shown in the side pane. In that blog post, I deploy all the files manually which of course took time to do. Today, we will learn how to optimize it in order to boost productivity. We will learn how to use spkl...

Dynamics CRM: addOnLookupTagClick and removeOnLookupTagClick

Feb 5, 2022

Today we will learn simple methods that are related to the datatype lookup on CRM: addOnLookupTagClick and removeOnLookupTagClick. Basically, addOnLookupTagClick is a function to register an event when the user is clicking the lookup tag value. Click the Lookup Tag value From the...

Dynamics CRM: Proving Auto Number Data Type Is Legit!

Nov 25, 2021

I just saw Nishant Rana's post about the auto-number data type that you can check here. And to be honest, I just knew about it and felt intrigued to test it. My expectation was pretty low about this data type (to handle lots of requests and result in duplicate numbers in the...

Dataverse: Testing Database Transactions On Custom API

Sep 8, 2021

After I examined the potentials of Custom API to redefine how we design the system, I was curious if Custom API will also apply database transactions following the plugin event execution pipeline (Pre Operation - Post Operation will be in the transaction. Meaning if during the...

Implement Logging Using Azure Cosmos DB In Dynamics CRM Plugin

Jul 15, 2021

If your organization got connected with lots of source systems, the most common request from management is to log the requests and check the result from the source system so we can analyze the log/provide the log for checking process. So today, we will learn how to create a...

Dynamics CRM: Effective Way Calling Custom Web API In Plugin Development

Jul 8, 2021

After I post several posts about Custom Web API (Dynamics CRM: Simplify Development with Custom API for Reusability and Get Environment Variable in a Flow using Custom Web API). You should be more clear about how to create the Custom Web API in your environment. Today, we will...

Get Environment Variable in a Flow using Custom Web API

Jun 24, 2021

Inspired by a blog post by Natraj about "Using Custom API as a trigger for Flow" that you can find here, I am thinking to create a sample collection of Custom Web API that all people can make use of/learn the code (the code design might not be suitable for you, but I open for...

Dynamics CRM Plugin: Caching using Azure Redis Cache

Jun 2, 2021

One of the most common questions that we as Developers face is about caching the data. On the previous version (on-premise) of Dynamics, when we get a task to cache some data, we will use MemoryCache class. But in the cloud version, because we can't directly access the Server,...