web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :

Community blogs

Featured

Latest blog posts

View all
Like (1)
Fix build error at "using Microsoft.IdentityModel.Clients.ActiveDirectory" in D365...

If you used Azure Active Directory Authentication Library (ADAL) in your customization, and get a compilation error at "using Microsoft.IdentityModel.Clients.ActiveDirectory" statement in 10.0.43 update -- this is because ADAL is deprecated and MS...

Sasha Nazarov 901
Like (0)
D365FO: Bypassing "next" in CoC

DISCLAIMER: Use this trick at your own risk. Do not do this, unless you absolutely have to. Some time ago I had to figure out why one of the custom services was slow. It took like 30+ seconds to return a dozen of trade agreements for a custom...

Sasha Nazarov 901
Like (0)
Marking via X++

X++ code for marking in D365FO (it is somewhat different from that in AX 2012): InventTransId issueInventTransId = 'x'; InventTransId receiptInventTransId = 'y';  InventTransOriginId receiptInventTra...

Sasha Nazarov 901
Like (0)
Common mistake, when creating Purchase Orders from X++

I would like to warn my fellow Axapta/AX/D365FO bloggers, that blind copy-pasting from each other seems innocent, but it fact may result in spreading bugs.E.g., the following piece of code is very popular in "How to create Purchase Order from...

Sasha Nazarov 901
Like (1)
Controlling grid line colors

Can see some folks have found the DisplayOptionInitialize event, still they are in doubt on how to control the displayOption settings based on the selected line.Here is the solution:X++: [FormDataSourceEventHandler(formDataSourceStr(Form1, Sa...

Sasha Nazarov 901
Like (1)
Create LedgerDimension from main account and financial dimensions

The following code will (hopefully) keep generating valid LedgerDimension values, even after account structures or advanced rule structures are modified.In the example below, there is an account structure with MainAccount-BusinessUnit-Department s...

Sasha Nazarov 901
Like (0)
What may happen if your exception handling is not robust enough

Please find below a 4 minute teaser trailer of mfp's article (remember to change to higher resolution):

Sasha Nazarov 901
Like (0)
Bugs in the DateTimeUtil::getSystemDateTime()

After the current system date is changed, either from the user interface or via systemDateSet function, the DateTimeUtil::getSystemDateTime() goes out of control. Don't ever use this function for unique keys generation. Unfortunately, the...

Sasha Nazarov 901