Open outbound link for finance and operations using X++
To open an outbound link using X++, follow below steps
Create a New Class
Create a new class in Microsoft Dynamics 365 for Finance and Operations by navigating to the AOT and selecting "Classes" under the "Code" node.
Right-click and select "New Class" to create a new class.
Define a method In the new class
There are two methods to open outbound link
Method 1
Define a method In the new class, create a new method to open the outbound link.
You can name this method "Outboundlink1" or anything you prefer.
Here is an example of method 1 x++
Create New Class
class outboundlink1
{
public static void main(Args _args)
{
Browser browser = new Browser();
System.Diagnostics.ProcessPriorityClass ppc = new System.Diagnostics.ProcessPriorityClass();
Browser.navigate ("https://www.latestupdates07.in"); // Replace with your desired url
}
} (code-box)
Click on Start
class Outboundlink2{public static void main(Args _args){Browser browser = new Browser();browser.navigate('https://www.nxtnotify.com', true, false);}}(code-box)
More topics will be covered from time to time, so stay tuned.
Subscribe Our You Tube Channel My Edition(Latestupdates07)