Dimensions in Microsoft Dynamics 365 for Finance and Operations or in Microsoft Dynamics AX 2012 are always have a very important role. Playing with dimensions is always a hectic thing. To get main account from ledger dimension in D365FO is a very common requirement.
In this article, you will get the one line code to get the Main Account from Ledger Dimension in D365FO using LedgerDimensionFacade class. See the following code:
//Get MainAccountId from LedgerDimension
info(strFmt("%1",LedgerDimensionFacade::getMainAccountFromLedgerDimension(LedgerDimension).MainAccountId));
//Get Name of MainAccountId from LedgerDimension
info(strFmt("%1",LedgerDimensionFacade::getMainAccountFromLedgerDimension(LedgerDimension).Name));
In this way, you can get Main Account from Ledger Dimension in D365FO. If this helps you, please Like, Comment and Share to help other people.
If you found any ambiguity or a better solution, please feel free to ask.
Blog: Click here
YouTube: Click here
GitHub: Click here
Talk is cheap. Show me the code. – Linus Torvalds
The post Get Main Account from Ledger Dimension in D365FO appeared first on NevoiTech Blog.

Like
Report
*This post is locked for comments