Sunday, March 17, 2019

How to open a Web Page using x++ D365 FO

Hi Folks ,

All we need to do to achieve this is follow these simple steps :-


1) Create a Runnable Class

2) Write the following logic in the class :-

               class ABC
              {
                      public static void main(Args _args)
                      {
                            Browser browser = new Browser();
                            browser.navigate('www.google.com', true, false);
                       }

                }

         Same logic we can use in event handlers or on clicked event of a button.


         Happy Coding !!!!

Performance Tuning in D365 Finance & Operations — A Deep Dive from the Field

Patterns, Pitfalls, and Proven X++ Techniques for Enterprise-Scale Systems Performance problems in Dynamics 365 Finance & Operations ra...