June 14, 2020

AppChecker in Dynamics 365 Finance and operations

Hi Folks,

 

You may have seen one checkbox for AppChecker while doing a model build or while creating deployable packages OR maybe somewhere else in this lockdown. :)

 

Have you ever wondered what this all about and why it can be useful in your project. Well this tool is another check to ensure that your custom code meets all MS best practice and it behaves kind of a gatekeeper to ensure your coding standards are met to avoid any further upgrade issue with #MSDyn365FO.

 

In other words (I mean using copy-paste ;)  it Allows you to get insights into what processes a particular application is performing, including stack traces and low level memory management data. It will complement Activity Tracking and will hopefully have its own dashboard in LCS where all of this data is overlaid for easy consumption.

 

You can get more details on AppChecker on below links

 

Application checker on GitHub

 

Biggest Takeaways From Microsoft BizApp Summit 2019

 

Enjoy home arrest for few more days..... No week or maybe another month.

Cheers!!!

Harry

 

-Harry Follow us on Facebook to keep in rhythm with us. https:fb.com/theaxapta

June 01, 2020

QuickFix -12: 'Open with logic app designer' missing in Visual studio

Recently I installed VS2019 professional on a new machine and while developing Logic Apps through ARM I can not see the option to open my JSON file in logic app designer. 



To overcome this issue, download another addins "Azure Logic Apps Tools for Visual Studio 2019"

























-Harry Follow us on Facebook to keep in rhythm with us. https:fb.com/theaxapta

May 07, 2020

[Solved] Logic app error while calling D365FO action GetAzureWriteUrl

Error:
{
  "status"400,
  "message""An error has occurred.  Exception occurred while executing action GetAzureWriteUrl on Entity DataManagementDefinitionGroup: The blob with identifier  could not be obtained.\r\nclientRequestId: ###### ###",
  "error": {
    "message""An error has occurred.  Exception occurred while executing action GetAzureWriteUrl on Entity DataManagementDefinitionGroup: The blob with identifier  could not be obtained."
  },
  "source""###.####.dynamics.com",
  "errors": []
}

Possible reason:

If it's coming on newly added action than you are missing guid, If you modify anything on the action the guid parameter clears itself and you need to put it again.


Solution:

Pass a unique value in the action parameter uniqueFileName  , you can write an expression for guid like guid().

Cheers!!!

Check out my other post on Logic app errors and solutions.

-Harry Follow us on Facebook to keep in rhythm with us. https:fb.com/theaxapta

May 02, 2020

How to get tableId of tables in D365FO

Hi Folks,

Now when we don't have the leverage of Jobs any more and if you need quick result when you are dealing with multiple tables, try below to get table Id

Option 1: D365FO browser
http://<Environment link>/?cmp=<LegalEntity>&mi=SysTableBrowser&TableName=SysTableIdView

Option 2: SQL server management studio
Run below query

select * from SysTableIdView

Of course, you can filter your queries based on your requirements. 


-Harry Follow us on Facebook to keep in rhythm with us. https:fb.com/theaxapta