Testing #MSDyn365FO Odata with Postman
Last year I posted on using Postman. Things have changed since then and I need to update.http://dynamicsnavax.blogspot.com/2017/05/dynamics-365-for-operation-web-service.htmlThere is a good article...
View ArticleAutomated testing #MSDyn365FO Odata with Postman
In the last post I did a quick run through on using Postman for testing Odata services.This post I will give some tips on how you can write automated tests using Postman.Tip 1 – Parameterise as much as...
View ArticleUsing Global Variables with Retail Modern POS
I am using version 8 platform update 15. Since the POS development is locked out and extensions only is allowed. There are some limitations and a number of objects are not accessible. I was trying to...
View ArticlePrint a Sales Invoice via X++ in #MSDyn365FO
Often you want to print a report via X++. One of the more common reports is the sales invoice.Below is some code you could use to download a pdf copy. I am just picking the first invoice and printing...
View ArticlePrint a report as a byte array via X++ in #MSDyn365FO
In the last post I showed how to print the sales invoice as a pdf. In this post we will do the same but generate a byte array of the pdf report. I tried to make the code as readable as possible and...
View ArticleGotcha with Extending Retail Channel transaction table
I will start by pointing you to a good article Andreas Hofmann from Microsoft has written. It steps you through what you need to extend a transactional table in the Retail Channel and bring that back...
View ArticleAlternate way to print a report as a byte array via X++ in #MSDyn365FO
Earlier this month I posted on how to print a report as a byte array. I will do the same but using an alternative method. I will use the print archive instead.You need to create an extension class for...
View ArticleSend to Azure Service Bus in #MSDyn365FO
Sending a message to Azure Service Bus is really simple in FinOps. Below is the job I wrote to send a message to the service bus. It takes a connection string and a queue name for connecting. The...
View ArticleFind TableId using table browser #MSDyn365FO
I am usually doing this from the development environment. However, I was debugging a customer environment where I only had access to the front end. I had a table that only gave me the RefTableId. I...
View ArticleSend file to temp blob storage in #MSDyn365FO
In this post I will talk about sending a file to a temporary blob storage. A little warning before I get into it.This is using the Microsoft’s blob storage that is provisioned for us. I haven’t given...
View ArticleDebug Modern POS using .NET Reflector
Respect to all those POS developers. It really requires some dedication and focus to be a POS developer. This is an example of something I would have not figured out without my colleagues. We were...
View ArticleRecurring import General Journal file using Microsoft Flow #MicrosoftFlow...
Microsoft Flow is a simple and cost effective way of integrating. In this post I will walk through how to use Flow for recurring file integration. The most common scenario I can think of is the general...
View ArticleData Entity stuck “In Process”
There are a few reasons a scheduled data job may not execute. I made a silly mistake and it seemed as though the jobs where stuck on “In process”.Things I checked:1. Check the job isn’t disabled. See...
View ArticleAzure DevOps Release Pipeline–Walkthrough
It is a great start to 2019. Joris from Microsoft has welcomed the year with the release of the Azure DevOps Release Pipeline task on the marketplace.Official...
View ArticleRegression Suite Automation Tool - Create unique values
The RSAT doesn't have any roll back feature. So, it can be frustrating updating the excel file withunique records.Well not to worry - RSAT supports Excel formulas. The user guide suggests using...
View ArticleEmbed PowerApps in Modern POS
There was a feature released around 8.1.3 to open URL in POS. https://docs.microsoft.com/en-us/dynamics365/unified-operations/retail/open-url-in-posFollow the guide to add a button to POS via the...
View ArticleRegression Suite Automation Tool (RSAT) via command line
The recent RSAT tool now supports running via command line. Just call the ConsoleApp executable with the right commands. This is great for automation scenarios. Normally, you would have all your test...
View ArticleDetailed guide on creating Business Events with Azure Service Bus
I have been working with the new Business Events feature released in FinOps and you should read the docs site first.This blog post focuses primarily on setting up Azure Service Bus endpoint. Setting up...
View ArticleEvent Based Integration using Business Events and Data Management Framework
In this post I will share how I used Business Events for integration. If you have been in the FinOps space, then you know that there is a Recurring integration pattern that uses dequeue concept. The...
View ArticleData Management Export - XML to JSON Transformation
In my last post, I wrote about event based integration using Business Events. I used JSON as my export file type. JSON is a lot easier to work with in Microsoft Flow or Azure LogicApp.Below is how I...
View Article