Dynamics 365

Search the Dynamics community

Filter blog posts

Card view List view
  • Relevance
  • Most recent
  • Most liked

Filter blog posts

LikeLike (2)
AX 2012: Create lookup in X++

To create a lookup on a control (e.g. StringEdit control), override the lookup method of that control and copy paste the following code snippet in it. Of course, you will need to substitute datasource of the query according to your requirements. ...

M Anas Khan 1,424
LikeLike (2)
AX 2012: Add dynalink in X++

Use the following code to add dynalink to the form datasource query: public void init() { super(); this.query().dataSourceTable(tableNum(MzkPurchTrackingDetailsTable)).clearDynalinks(); this.query().dataSourceTable(tableNum(M...

M Anas Khan 1,424
LikeLike (2)
AX 2012: Add custom field to standard DIXF target entity

Purpose: The purpose of this document is to describe how we can add custom fields to standard DIXF target entity. While performing data migration for standard entities like customer, we often come across a requirement to load data for customized f...

M Anas Khan 1,424
LikeLike (2)
AX 2012: this vs element | When to Use What?

In X++ we often come across an issue that we are unable to access an object member (e.g. a form method) via this keyword. Instead we CAN access the same form method via element keyword. So what’s the difference between them?   The diffe...

M Anas Khan 1,424
LikeLike (2)
D365FO: The path is already mapped in workspace

Product: Dynamics 365 for Finance and Operations Purpose: The purpose of this blog is to explain how can we resolve the version control workspace issue while working with Azure DevOps version control, previously known as VSTS or TFS. ...

M Anas Khan 1,424
LikeLike (1)
AX 2012: evalBuf – Evaluate string expression in X++

evalBuf Function is a very strong API in X++. We can quite easily evaluate complex algebraic expressions given in string and the result is also given back in string. This API should be used along with CodeAccessPermission. The downside of using th...

M Anas Khan 1,424
LikeLike (1)
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 provi...

M Anas Khan 1,424
LikeLike (1)
AX 2012: General journal posting in X++

Purpose: The purpose of this document is to describe how we can quickly post general journals (also known as GL opening balances or simply GL balances) across all the companies in X++. Business requirement: Ability to post GL balances across all t...

M Anas Khan 1,424
LikeLike (1)
D365: Create lookup in X++

Product: Dynamics 365 for Finance and Operations Purpose: The purpose of this document is to demonstrate how we can create a lookup in X++ and attach it to an extension field added to the form extension of standard Sales order form. This is a good...

M Anas Khan 1,424