Skip to main content

Notifications

Announcements

No record found.

Community blogs

Featured

Latest blog posts

View all
Like ( 0 )
Fix : At least one security token in the message could not be validated

Part of the initial configuration in cloud-hosted environments application id needs to be updated in wif.config file. Reports will not function without this setup. When users attempt to run the report, system throws following error message. "At least

Like ( 0 )
Fix : The transaction log for 'AxDB' is full due to 'LOG_BACKUP'

To shrink log file size in development environment, run below query in SSMS against AxDB. Below query will shrink the log file to 1 MB USE AxDB; Go   ALTER DATABASE AxDB SET RECOVERY SIMPLE; GO   -- enter log filename below DBCC SHRINKFILE (filename

Like ( 0 )
D365 FSCM trial VM for practicing purposes.

Microsoft offers trial virtual machines for practicing and preparing for certification. The link to launch this virtual machine is present in most of the topic on the self-paced training's learning path. These virtual machines are useful for anyone p

Like ( 0 )
Troubleshooting in X++ : Enabling a debugger for model

To include an OOTB model while debugging, you have to enable debugging for that package. To do this, 1.  Navigate to Extensions > Dynamics 365 > Options. 2.  Navigate to Dynamics 365 and pick debugging from the left panel. 3.  Select the model to

Like ( 0 )
Deserialize JSON collection in X++

Assume Json string response is structured like below. "data": [ { "SalesOrder": "SO-0001201", "TransDate": "1/1/2024", "status": { “currentStatus” : Inprogress,

Like ( 0 )
Using Odata in excel

Dynamics 365 finance and operations offer a variety of options for exporting data for reporting purposes, including a data management framework, an office add-in, and an Odata service. In this blog, we will look at how to use Excel's power que...

Like ( 0 )
Understanding getTableTmp method in X++

We use the getTableTmp method in SSRS report development. This method includes a select query for the temp table and returns the temp table buffer. It should be noted that the buffer temp table buffer is not declared as a local variable within the...

Like ( 0 )
Change the values of the report header text box dynamically based on the page cont...

Sometimes the report header needs to change from page to page. For example, on page one, the vendor ID and description must be displayed, and on page two, the vendor ID and description for a different vendor must be displayed, as shown in the scre...