In today's article, we will see what Key Vault is, why to use and how to use Key Vault using X++ code. What is Key Vault Azure Key Vault is one of several key management solutions in Azure, and helps to solve problems such as secret, key and certificate management. Why use Azure Key Vault There... Continue Reading →
Top 5 X++ new features
In today's article, we will see new features added in x++. New operators are added in X++Access data by using the SysDa classesNew options in VS > Project > Right-clickChanges To Internal Access modifier in X++SysSetupConfigAttribute attribute New operators are added in X++ There are new two operators( *= and /=) added to X++ libraries.... Continue Reading →
CHAIN OF COMMANDS
Chain of Command is the term that describes how we customize, or extend, base Microsoft code in Microsoft Dynamics 365. You can now wrap logic around methods that are defined in the base class that you're augmenting. You can extend the logic of public and protected methods without having to use event handlers. Microsoft’s base... Continue Reading →
DISPLAY METHOD ON TABLE EXTENSION D365 FO
In Dynamics 365 for Operations, we don’t have the option to create methods on table extension, so we should use the extension class to do that. In this article, we will see how to create a display method on the table extension class and use it on a form extension. First, create your table extension... Continue Reading →
Create/Update Sales order and Purchase order using X++
In this article, We will see how to create/update sales order and purchase order through x++. The code snippet for purchase order creation public class PuchaseOrderDemo { private void new() { } public static PuchaseOrderDemo construct() { return new PuchaseOrderDemo(); } public void createPurchOrder() { PurchTable purchTable; PurchLine purchLine; VendTable vendTable = VendTable::find("1000"); AxPurchTable axPurchTable;... Continue Reading →
Create a customer/vendor using x++
In this article, We will see how to create a customer and vendor record using X/ Below is the code snippet for creating a customer record in X++. public class CustomerCreateDemo { private void new() { } public static CustomerCreateDemo construct() { return new CustomerCreateDemo(); } public void createCustomer() { CustTable custTable; NumberSeq numberSeq; Name... Continue Reading →