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 (0)
Fail to rename the AxDB Database

Hi everyone, The other day a friend had a problem when trying to rename the AxDB database on a dev box. Renaming the DB is part of the data upgrade process when you are upgrading from AX2012 to D365FO (click here to learn more about it). Th...

Pedro Tornich 955
Like (0)
Additional attachments when sending reports through email

Hi folks, I’ve been posed with the following task: When the user posts a purchase invoice we would need to get other files attached to the purchase order and send them as attachments alongside with the invoice report itself, in a single ...

Pedro Tornich 955
Like (0)
Deploy reports using command line

Hi everyone, Sometimes it’s useful to deploy all reports in an environment or all custom reports and with the command line you can deploy all reports at once. Here are some report deployment command line examples: K:\AosService\Pac...

Pedro Tornich 955
Like (0)
SQL Server table locks

Hello folks, I’ve been working with AX/D365 for several years and there is one thing that happens in almost all projects with high data volume, at some point we start to get slow processes. When I have to analyze very slow process, th...

Pedro Tornich 955
Like (1)
BaseEnum values

Hey! In D365FO some BaseEnums doesn’t have the Enum Value property in its elements. This happens because the ABC BaseEnum is extensible. To comply with the extension framework Microsoft introduced a ...

Pedro Tornich 955
Like (1)
Get Dimension Value From Default Dimension

static void getDimensionValueFromDefaultDimension(Args _args) { #define.DimensionName('MyCustomDim') DimensionAttributeValueSetItem dimAttrValueSetItem; DimensionAttributeValue dimAttrValue; DimensionAttribute dimAttr = Di...

Pedro Tornich 955
Like (0)
Get call stack

Hi folks, Sometimes you want to debug a process in AX2012 but it’s running in batch and you don’t want to setup up batch debugging. In this case you can add a throw to the code to check the value of a variable, but even if you d...

Pedro Tornich 955
Like (0)
Create Journal Line (AX2012)

protected LedgerJournalTrans createJournalLine(CustTransOpen _custTransOpen) { CustTable custTable; LedgerJournalTrans journalTrans; AxLedgerJournalTrans_CustPaymJour axJournalTrans; custTable = this.getCustTable(_custTransOpen.A...

Pedro Tornich 955