Dynamics 365

Search the Dynamics community

Filter blog posts

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

Filter blog posts

LikeLike (3)
D365O - How to get current worker through X++

The current user or worker could be retrieved through following code since AX 2012DirPersonUser::currentWorker()However, In Dynamics 365 for operation this has refactored to;HcmWorkerLookup::currentWorker()

Faisal Fareed 10,794 User Group Leader
LikeLike (3)
Configure Visual Studio to connect/open with correct AOS

Visual Studio is essential to create/edit SSRS reports with MS Dynamics AX 2012 and later releases. Here are steps to configure visual studio with correct AOS (in my case it is development AOS).Connect with computer where visual studio is installe...

Faisal Fareed 10,794 User Group Leader
LikeLike (2)
Send email from AX using live or gmail exchange server

You may find few more posts over this topic to send emails from AX using live (Hotmail) or gmail exchange server. This is really helpful when we don’t have exchange is in place sometimes due to high cost or you just want to send emails for testing...

Faisal Fareed 10,794 User Group Leader
LikeLike (2)
Dynamics 365 AX7 - Configure Visual Studio for better expereince

Few settings to configure in Microsoft Visual Studio to make the development experience with AX a little smoother. Go to Dynamics 365 Options Set Projects Options - organize project by element type ...

Faisal Fareed 10,794 User Group Leader
LikeLike (2)
Unit Conversion Check AX2009 Vs AX2012

AX 2009if(!UnitConvert::canConvert(this.inventTableModuleInvent().UnitId, this.SAB_ProdPickingUOM, this.ItemId))AX 2012unitConvFound = UnitOfMeasureConverter::canBeConverted(UnitOfMeasure::findBySymbol(this.inventTableModuleInvent().UnitId).RecId,...

Faisal Fareed 10,794 User Group Leader
LikeLike (2)
D365FO: Entity cannot be deleted while dependent Entities for a processing group exist. Delete dependent Entities for a processing group and try again.

Scenario:There are times when you want to delete an entity from target entity list and when you do so, you face an error message which does not tell you where exactly the entity has been used. "Entity cannot be deleted while dependent En...

Faisal Fareed 10,794 User Group Leader
LikeLike (2)
Dynamics 365 AX7 - Create Model and Project - First step to start with development

This post describes how to create model with correct selection of package which leads to correct development approach either Extension or Overlayering (Customization)Go to Dynamics 365 or AX7 | Deploy | Create modelEnter required information ...

Faisal Fareed 10,794 User Group Leader
LikeLike (2)
Tool to copy security permissions in AX

Copying security roles, groups, user options and associating worker against userThe role based security works very well in AX 2012 and security development tool has also made the life of AX system administrator very charming. It was a nightmare to...

Faisal Fareed 10,794 User Group Leader
LikeLike (1)
D365FO - Get list of obsolete data entities

Find which data entity is obsolete after every new update. Here are the steps. For example; Customers V2 data entity is obsolete with version 8.0For developers: Type the below in the metadata search in VSTS:type:dataentityview property:isobsolete=yes

Faisal Fareed 10,794 User Group Leader