Posts

Showing posts from January, 2017

How to filter data for the last few weeks?

I got a task where I had to get the data for the last few weeks excluding the current week. The week begins on a Sunday and ends on a Saturday. Here is the code: { Date dateFrom; Date dateTo; date fd; ; fd = dateStartWk(systemDateGet()); // get the First day of the Week dateTo = fd - 2; // Subtracted 2 since the first day is a Monday dateFrom = dateTo - ((5 * 7) -1); // shud be 3*7 - 1 as ToDate value is also Included info(strFmt("%1-%2-%3", fd, dateTo, dateFrom)); }

Best Practice Issues

Image
BEST Practice errors! These are self-explanatory!

How to Change the Number into a Barcode for the Reports in Visual Studio

Image
Its Simple. Select the Column that you want to convert in to a Barcode and change the properties in the properties window. Save and Deploy!

Automatic Posting of Journals after importing through DMF

Image
Here is the code that will post the journals that are imported using DMF (in my case). Select the class DMFEntityBase and write the code below in the PostTargetProcess method Code to be written in the PostTargetProcess method /// /// Executes the logic once after processing the target data. /// /// /// A table buffer. /// public void postTargetProcess(DMFDefinitionGroupExecution _dmfDefinitionGroupExecution) {     //     PriceDiscAdmTable               priceDiscTable;     PriceDiscAdmCheckPost           priceDiscAdmCheckPost;     PriceDiscAdmName                priceDiscAdmName;     PriceDiscJournalNum             PriceDiscJournalNum;   /*  while select priceDiscAdmName     {         select reverse firstOnly priceDiscTable      ...

Deploying reports in AX through AOT

Image
I recently found that there is another method to deploy a report from VS (in AX – through AOT) After we make the changes, in the report in Visual Studio, 1.       Save the Changes (Click Save) 2.        Rebuild the project and add the project to AOT. 3.        Go to AOT > SSRS Reports and find the report. 4.        Restore the Report and deploy element. 5.        The report deploys into AX and ready for use.