D365: Refresh entity list batch job failing

Summary: Encountered error in DEV box during Refresh Entity List batch job after modifying data entity in Dynamics 365 for Finance and Operations. Error message indicates lack of change tracking in SQL database. Solution involves enabling change tracking with a specific SQL command on the database.

D365: When and how to use postLoad() method

This post discusses the usage of the postLoad method in data management for Dynamics 365 for Finance and Operations. It explains how the postLoad() method can be used to provide values for unmapped fields in export scenarios. A code example demonstrates populating a custom field added to a standard data entity to export additional information from released products.

AX7/D365/Operations: Create customer postal address through data entity from .NET console application

Purpose: The purpose of this document is to demonstrate how we can create customer postal addresses in Dynamics 365 for Finance and Operations using an external .NET console application. Code: static void Main(string[] args) { Program program = new Program(); Uri oDataUri = new Uri(ODataEntityPath, UriKind.Absolute); var context = new Resources(oDataUri); context.SendingRequest2 += new EventHandler(delegate... Continue Reading →

AX7/D365/Operations: Create custom data entity

Purpose: The purpose of this document is to demonstrate how we can develop a custom data entity for a custom table in Dynamics 365 for Operations. Prerequisites: Access to Dynamics 365 for Operations instance via remote desktop. To be provisioned as an administrator for the instance. Visual Studio project, model, package have been created. Custom... Continue Reading →

AX7/D365/Operations: Data import using data entities

Purpose: The purpose of this document is to demonstrate how we can import data using data entities in Dynamics 365 for Operations. Prerequisites: Access to Dynamics 365 for Operations instance via remote desktop. To be provisioned as an administrator for the instance. Business requirement: Ability to import/migrate legacy business data to Dynamics 365 for Operations.... Continue Reading →

AX7/D365/Operations: Data export using data entities

Purpose: The purpose of this document is to demonstrate how we can export data using out-of-band (OOB) data entities from Dynamics 365 for Operations. Prerequisites: Access to Dynamics 365 for Operations instance via remote desktop. To be provisioned as an administrator or at least data management officer for the instance. Business requirement: Ability to export... Continue Reading →

AX7/D365/Operations: Data entities export data error

 Exception: While exporting data from local VM of Dynamics 365 for Operations, you might get an error if the Azure storage emulator is not running. Microsoft.WindowsAzure.Storage.StorageException: Unable to connect to the remote server —> System.Net.WebException: Unable to connect to the remote server —> System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused... Continue Reading →

Blog at WordPress.com.

Up ↑