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.04 / day

Message History

from delta.tables import DeltaTable

# Before

before = spark.read.table(“SalesInvoiceViewTable”).count()

print(f”Before: {before} rows”)

# Delete all rows

deltaTable = DeltaTable.forName(spark, “SalesInvoiceViewTable”)

deltaTable.delete()

# After

after = spark.read.table(“SalesInvoiceViewTable”).co...


Read full story

internal final class SOReservation
{
/// /// Class entry point. The system will call this method when a designated menu /// is selected or when execution starts and this class is set as the startup class. ///
/// The specified arguments.
public static void main(Args _args)
{
SalesLine salesLine;
InventDim inventDim;
InventDimParm inventDimParm;
Inve...


Read full story

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