Please turn JavaScript on
header-image

Microsoft Dynamics 365 for Finance and Operations Tech Blog

Want to keep yourself up to date with the latest news from Microsoft Dynamics 365 for Finance and Operations Tech Blog?

Subscribe using the "Follow" button below and we provide you with customized updates, via topic or tag, that get delivered to your email address, your smartphone or on your dedicated news page on follow.it.

You can unsubscribe at any time painlessly.

Title of Microsoft Dynamics 365 for Finance and Operations Tech Blog: "Microsoft Dynamics 365 for Finance and Operations Tech Blog – x++"

Is this your feed? Claim it!

Publisher:  Unclaimed!
Message frequency:  0.39 / week

Message History

Recently, I faced a requirement where a value had to be passed from Postman through a Custom API URL, and the same value needed to be read and processed inside Dynamics 365 Finance & Operations (D365FO) using X++.

This blog explains how to read URL parameters passed to a Custom API


Read full story

from pyspark.sql import SparkSession

from pyspark.sql.functions import *

custInvoiceJour = spark.read.table(“CustInvoiceJour”)

custInvoiceTrans = spark.read.table(“CustInvoiceTrans”)

hcmWorker = spark.read.table(“HCMWorker”)

salesTable = spark.read.table(“SalesTable”)

salesLine = spark.read.table(“SalesLine”)

...


Read full story

BEGIN TRANSACTION;

IF OBJECT_ID(‘dbo.DualWriteProjectConfiguration’, ‘U’) IS NOT NULLTRUNCATE TABLE dbo.DualWriteProjectConfiguration;

IF OBJECT_ID(‘dbo.DualWriteRuntimeConfig’, ‘U’) IS NOT NULLTRUNCATE TABLE dbo.DualWriteRuntimeConfig;

IF OBJECT_ID(‘dbo.DualWriteEntityMapping’, ‘U’) IS NOT NULLTRUNCATE TABLE dbo.DualWriteEntityMapping;


Read full story