Skip to main content

Notifications

Community blogs

Featured

Latest blog posts

View all
Like ( 0 )
Enabling SessionId on Azure Service Bus Endpoints for Business Events

The Problem Business Events have become the norm for communicating events happening in Dynamics 365 Finance and Operations to the outside world.  One type of business event endpoint is the Azure Service Bus where you can use Topics or Queues....

nspiteri 541
Like ( 0 )
Searching for code across all models

Problem One missing feature from Ax2012 that I severely miss in Dynamics 365 is the ability to search for examples of code across all my models. The MetaData Search tries to help but is very limited You might need it for finding examples of how co...

nspiteri 541
Like ( 0 )
Build pipeline error when generating packages

This is another tip to fix your build powershell scripts in order to reduce the number of errors you get when running a build pipeline. Issue Occasionally your build pipeline might have an error in the Generate Packages step.  It will not err...

nspiteri 541
Like ( 0 )
Warning: Package folder already exists in deployment warning on Build

Cause When building you frequently encounter warnings such as: "Package folder already exists in deployment: Solution name" Analysis These are generally not harmful and are caused because the folder already exists in the model directory....

nspiteri 541
Like ( 0 )
Build process failing in Prepare For Build step

The Problem I like to run the automated build pipelines in D365 as these make releases smoother when you have multiple persons/teams working together. There is a constant frustration that I have been having which is of failures in the Prepare for ...

nspiteri 541
Like ( 0 )
Could not load file or assembly Newtonsoft.json or one of its dependencies in batc...

One issue I have encountered when developing C# code to be called in D365 has been the above error message when running in batch mode.  In this case the Newtonsoft.json is a package that I would have downloaded from nugget (it could refer to ...

nspiteri 541
Like ( 1 )
Add Form Parts to a form at runtime

In case you need to, at runtime, create form parts, this is the right article for you. The following code should be a foundation for what you are trying to do.  In this case we are dynamically creating a formpart on the current form for every...

nspiteri 541
Like ( 1 )
Create and Post Free Text Invoice in D365 for Operations

I've seen a bunch of articles that discuss how to create and post a free text invoice in Ax2012.  I decided to write my own version as, some things might be different between the 2 versions.  This article is based on the example foun...

nspiteri 541