The Power Automate user interface provides an excellent way to document Flows and use them for reference purposes. However, the insight into which flows are created on which tenant in which environment is moderate. Moreover, it is difficult to click through previously arranged Flow actions looking for previous solutions when setting up Flow actions.
A simple App makes this possible. Flows can be registered in the App, so that a total administration can be carried out of all Flows that have been created in different tenants. In the App, the HTML code can also be pasted from the Flow designer. As soon as the record is saved, a Flow starts that adds the different styles from the stylesheets, resulting in a stand-alone HTML page that can easily be displayed in a web site. This HTML file is placed on an Azure Storage by a second Flow for this purpose.
Now, writing to Azure Storage Accounts requires a premium connector. By placing a Flow in a Teams dataverse, no premium license is required.
The diagram speaks for itself, but is summarized when a flow record is kept in the App
The second Flow is in a Teams solution and is automatically started when the Flow Diagram file is dropped on SharePoint. This Flow does nothing but create a blob on Azure Storage with the contents of this file.
To make the flow diagram visible in the App, a tab with an iFrame control has been added to the Form where the correct link is put with JavaScript:
// A namespace defined for the sample code// As a best practice, you should always define // a unique namespace for your librariesvar dts = window.dts || {};(function () { // Define some global variables var myUniqueId = "_myUniqueId"; // Define an ID for the notification var currentUserName = Xrm.Utility.getGlobalContext().userSettings.userName; // get current user name // Code to run in the form OnLoad event this.formOnLoad = function (executionContext) { var formContext = executionContext.getFormContext(); var iFrame = Xrm.Page.ui.controls.get('IFRAME_Flow'); iFrame.setSrc(formContext.getAttribute("dts_flowdiagramurl").getValue()); var message = "iFrame source" + formContext.getAttribute("dts_flowdiagramurl").getValue() // display the form level notification as an INFO formContext.ui.setFormNotification(message, "INFO", myUniqueId); // Wait for 5 seconds before clearing the notification window.setTimeout(function () { formContext.ui.clearFormNotification(myUniqueId); }, 5000); }}).call(dts);