Skip to main content

Useful Links

LINKS FOR MICROSOFT DYNAMICS- (Beginners Guide)

Architecture :
https://technet.microsoft.com/en-us/library/dd309612.aspx

Introduction to Dynamics :
https://docs.microsoft.com/en-us/dynamics365/unified-operations/fin-and-ops/

1) Redirection for new custom report.
https://blogs.msdn.microsoft.com/dynamicsaxbi/2017/01/01/how-to-custom-designs-for-business-docs/

or

https://docs.microsoft.com/en-us/dynamics365/unified-operations/dev-itpro/analytics/custom-designs-business-docs

2) Customization-redirection of report in 365
https://docs.microsoft.com/en-us/dynamics365/unified-operations/dev-itpro/analytics/expand-app-suite-report-data-sets

3) All types of report customization in 365
https://blogs.msdn.microsoft.com/dynamicsaxbi/2017/01/02/customizing-app-suite-reports-using-extensions/

4) RDP report in ax 2012
https://community.dynamics.com/ax/b/thedynamicsblog/archive/2014/02/25/developing-ssrs-report-using-rdp-in-microsoft-dynamics-ax-2012

5) AOT Query report in ax 2012
https://community.dynamics.com/ax/b/dynamics101trainingcenterax/archive/2013/07/10/developing-ssrs-report-using-query-in-microsoft-dynamics-ax-2012

6) UI Builder Class for reports in ax 2012
http://axguruu.blogspot.com/2015/01/ssrs-report-using-ui-builder-class.html

7) EVENT HANDLERS
https://community.dynamics.com/ax/b/axilitynet/archive/2015/12/11/ax7-sneak-peek-events-and-subscriptions
https://community.dynamics.com/ax/b/vishalsblogonmsdynamicsax/archive/2017/05/04/d3fo-event-handlers-usage-throgh-code-in-ax7

8) RDP report on D365
https://www.tech.alirazazaidi.com/customization-in-new-dynamics-365-for-operation-dynamics-ax-ax-7-part-7-custom-ssrs-based-on-simple-report-data-provider/

9) Life Cycle Services Document
https://docs.microsoft.com/en-us/dynamics365/unified-operations/dev-itpro/lifecycle-services/getting-started-lcs

10) Lifecycle Services for Finance and Operations customers
https://docs.microsoft.com/en-us/dynamics365/unified-operations/dev-itpro/lifecycle-services/lcs-works-lcs

11) Service endpoints (SOAP)
https://docs.microsoft.com/en-us/dynamics365/unified-operations/dev-itpro/data-entities/services-home-page

12) Build and consume data entities
https://docs.microsoft.com/en-us/dynamics365/unified-operations/dev-itpro/data-entities/build-consuming-data-entities

13) Compute columns and virtual fields in a data entity
https://docs.microsoft.com/en-us/dynamics365/unified-operations/dev-itpro/data-entities/data-entity-computed-columns-virtual-fields?toc=dynamics365/unified-operations/fin-and-ops/toc.json

14) Trouble shooting in IIS

https://docs.microsoft.com/en-us/iis/troubleshoot/using-failed-request-tracing/troubleshooting-failed-requests-using-tracing-in-iis

15) On-premises project in Lifecycle Services

Create : 
https://docs.microsoft.com/en-us/dynamics365/unified-operations/dev-itpro/lifecycle-services/lbd-create-lcs-on-prem-project


Setup  : 
https://docs.microsoft.com/en-us/dynamics365/unified-operations/dev-itpro/deployment/setup-deploy-on-premises-environments

16) Getting started with MS Flow

https://flow.microsoft.com/en-us/documentation/getting-started/



17) Controller Class links

https://community.dynamics.com/ax/b/dynamics101trainingcenterax/archive/2014/01/30/using-controller-class-in-developing-ssrs-reports-in-microsoft-dynamics-ax-2012
https://www.dynamics101.com/using-controller-class-developing-ssrs-reports-microsoft-dynamics-ax-2012/
https://rajendraax.wordpress.com/2014/11/26/ssrs-report-by-using-controller-class-sample-code/

18) inmemory-vs-tempdb

https://community.dynamics.com/ax/b/axtipsandtricks/archive/2015/08/05/difference-between-inmemory-and-tempdb-tables-in-ax-2012

19) Workflows

https://dynamicsaxinsight.wordpress.com/2015/02/16/ax-2012-create-custom-workflow/
https://community.dynamics.com/ax/b/alirazatechblog/archive/2016/10/19/customization-in-new-dynamics-ax-aka-ax-7-part-6-custom-workflow

20) Delete instance of workflow

https://community.dynamics.com/ax/f/33/t/246087

21) How to: Run Batch Jobs

https://docs.microsoft.com/en-us/dynamics365/financials/ui-how-run-batch-jobs

22) Batch processing overview

https://docs.microsoft.com/en-us/dynamics365/unified-operations/dev-itpro/sysadmin/batch-processing-overview

Comments

Popular posts from this blog

Consume an AX7 custom web service by SOAP endpoint

Dynamics 365 for Operations (a.k.a. AX7) provides several endpoints for web service. In this blog post, I want to describe consuming a D365O custom web service in a C# application using the SOAP endpoint. For a detailed description about service endpoints, you can read the official documentation at  https://docs.microsoft.com/en-us/dynamics365/operations/dev-itpro/data-entities/services-home-page . The main advantage of the SOAP protocol is its descriptive functionality through the WSDL language. SOAP endpoints provide detailed description about contracts and parameters to call each service method. Visual Studio has a great functionality that can read the service description and automatically generate proxy classes to access the service methods. Let’s do an example of consuming a D365O web service in Visual Studio. Run  Visual Studio  and go to  File – New Project , go to  Templates – Visual C# – Windows Classic Desktop  on the left side of the window and select  Console App  

Work Flows in Microsoft Dynamics 365 (From Scratch)

Hi everyone, In this blog, I will tell you some basic steps about how to make a workflow. I had some issues in making a workflow so I made this blog so all of you can understand it. The links that I've mentioned below, use them where I've asked in the steps. Links: (For use) https://dynamicsaxinsight.wordpress.com/2015/02/16/ax-2012-create-custom-workflow/ https://community.dynamics.com/ax/b/alirazatechblog/archive/2016/10/19/customization-in-new-dynamics-ax-aka-ax-7-part-6-custom-workflow Steps: 1- Make Base Enum and add values in it.(The values shoule be proper!!!) 2- Customize a table or make a new table as extension wont work in this case because a method is to be over rided. 3- Add this enum to the fields area of that table. 4- Add a field group in the table, it will be used ahead. Fields to be added are of your choice. 5- Override canSubmit.... method of the table. 6- Make a static method in the table. 7- Details of the step 5 and 6 are in the links. 8-

Customization in Dynamics 365 for operation (Dynamics AX, AX 7) – Custom SSRS based on Report

Prerequisite  of this post  is understanding the AOT in Visual studio and basic programming language like C#. In very simple basic level RDP report three objects are required. Data contract,   Data Contract class  ties with extended data types. This class contain properties with getter setters. At run time these properties act as report parameters. Data Provider Class . This class act as container for report logic.  Here we get Report Query or parameters of Data contract class and perform queries on required tables. This class is extended with framework class. Temperory table Temperory table is used as bridge for data between report designer (DataSet) and Report logic. We populate temporary table with required logic in data provider class.  Report Requirement: Client wants a report where End user select Customer and Report shows, Customer Name, Sale order Number, Item Id, Item group. Sales order Quantity, expected delivery date of Sale order and Unit Sales price. The rep