Canada
pawan.deep55@gmail.com

Month: April 2020

D365 Finance & Operations

How to setup Azure active directory portal for 3rd party app authentication with D365FO

How to setup Azure active directory portal for 3rd party app authentication with D365FO

This post will explain how d365 finance & operations azure applications key things that are required for authentication for 3rd party applications like client applications, Postman. I hope this article helped you learn How to setup azure portal for 3rd party app authentication in D365 Finance & operations AX. Don’t forget to share this article. …

Tricks D365 Finance & operations

Open form via its AOT name in D365 Finance & operations

For developers, it can come handy if they can directly open the form via its AOT name in D365 finance & operations rather than opening via its menu item. To do so, you can simply search in the search bar by typing form:<form AOT name> For example, users management form AOT name is sysusermanagement. When …

401 unauthorised error

How to do string left or right padding in X++

This article will explain how you can do string padding with zeros or space with the specified length either left padded or right padded in X++. Often we have a requirement that the desired string should be of specific length (say 10) and if it is not of that length, it should be prefixed with …

str2enum SalesStatus

Convert string into enum str2enum in x++

This post will explain how you can assign and convert string input either read from excel etc into enum type variable. For this example, we’ll be going to use SalesStatus Enum used in Sales order to define its current state. Enum has 2 key properties Name – enum element name Label – it is used …