Introduction:
To open an attach file on a browser tab in Dynamics Operations 365, you can use the following code snippet
Code Snippet:
To open an attach file on a browser tab in Dynamics Operations 365, you can use the following code snippet
Code Snippet:
//get Public URL of the attach file from the DocuRef Buffer
str displayUrl = DocumentManagement::getAttachmentPublicUrl(docuRef);
//initialize browser object and navigate
Browser br = new Browser();
br.navigate(displayUrl);
str displayUrl = DocumentManagement::getAttachmentPublicUrl(docuRef);
//initialize browser object and navigate
Browser br = new Browser();
br.navigate(displayUrl);
No comments:
Post a Comment