CRUD operation in Dynamics AX 2009 through .Net business connector

CRUD operation in Dynamics AX 2009 through .Net business connector

MCP · Azure DevOpsYour delivery board, readable by an agentMCP · DataverseOne consent, and the data layer opensMCP · Dynamics 365 F&OConnecting F&O to an agent Microsoft hasn’t documented
Archive recovery note: the supplied Blogspot backup did not contain a separate saved page for this older entry. The text available in its archive/listing capture has been preserved and flagged for a later completeness check.
Friends, rather going into more details about "How to's" of accessing Dynamics AX through .Net, my main objective is to share my experience of performing CRUD operations in Dynamics AX 2009 through .Net BC. Here is a sample code;     // CREATE OR INSERT SAMPLE     // Create the .NET Business Connector objects.     Axapta ax;     AxaptaRecord axRecord;     string tableName = “AddressState”;     try     {         // Login to Microsoft Dynamics AX.         ax = new Axapta();         ax.Logon(null, null, null, null);         // Create a new AddressState table record.         using (axRecord = ax.CreateAxaptaRecord(tableName));         {             // Provide values for each of the AddressState record fields.             axRe...
Previous article← How to reuse table Id in Dynamics AX
Discussion

Ask a question or leave feedback

This is a review interaction. The WordPress version will store, thread and moderate comments.

Thanks — submitted for moderation in this review.
Search the whole site · Ctrl/⌘ + K