Create a cloud flow to view Dataverse long term retained data (preview)

Create a cloud flow to view read-only rows in long term data retention in Microsoft Dataverse. For more information about long term data retention in Dataverse, go to Dataverse long term data retention overview (preview).

The cloud flow described here creates and sends an email that includes an Excel file containing the retained data. If there are retained attachments associated with rows from Dataverse, they are also included as links in the Excel file. For more about the privileges required to run this flow, go to View long term retained data in Microsoft Dataverse

Important

  • Long term retained data is a preview feature in Microsoft Dataverse.
  • This capability is in process of rolling out, and will be available in all public cloud regions by June 8, 2023.

Creating the flow requires the following high level steps:

  1. Pass query parameters in FetchXML to create an Excel file with retained data, using a Dataverse action named Create Excel from RetainedData.
  2. Set a condition to determine if the Excel file has been created. Download the Excel file. Pass the required retrieval criteria parameters (table and FetchXML).
  3. When the Excel file has been created:
    • Set an action to download the Excel file.
    • Set an action to send an email to recipients with the Excel file attached.
    • Set an action to delete the Excel file from the Dataverse system table. This step is recommended to avoid Excel documents consuming database storage.

Tip

If you don’t see an email after running a flow successfully, check your junk mail folder.

Create the query and download FetchXML

  1. Sign into Power Apps, and then select Settings > Advanced settings.
  2. On the Dynamics 365 Settings page, select Advanced Find (filter icon) on the command bar.
  3. At the top of the Advanced Find pane, select Change to retained data.
  4. Create the query you want to retrieve the retained data. More information: Advanced find in model-driven apps
  5. In Advanced Find on the Advanced Find tab, select Download Fetch XML.

Create the flow

The following steps show you how to use an instant flow to create the Excel file and send it as an attachment to someone in email. You can also use similar steps to create a scheduled cloud flow.

  1. On the Power Apps home page, select Flows on the left navigation pane.

  2. Select New flow, and then select Instant cloud flow.

  3. Enter a name for the flow, and then select Manually trigger a flow.

  4. Select Create.

  5. Select New step, and then on the Choose an operation step, select Microsoft Dataverse.

  6. For the action, select Perform a background operation. For the action, select perform background operation.

  7. Enter the following information:

    • Catalog: Microsoft Dataverse Common
    • Category: Retained Data
    • Table name: (none)
    • Action name: Select Enter custom value and then enter Create Excel from RetainedData
    • FetchXml: Paste in the FetchXML created earlier from the advanced find query.
    • LayoutXML: Leave blank Create action that includes your retained data query FetchXML
  8. Select New step.

  9. For Choose an operation, select Condition, and then select the Expression tab.

  10. Add the following expression:

    • outputs('Perform_a_background_operation_(preview)')?['body/backgroundOperationStatusCode’]
    • is equal to: 30 Add expression to flow.
  11. In the If yes box, select Add an action.

  12. On the Actions tab, select Download a file or an image.

  13. Select the following values:

    • Table name: RetainedData Excels
    • Row ID: Select Add dynamic content, and then select ExportRetainedDataResponse ExportedExcelID
    • Column name: ExcelContent Add values for Excel download file
  14. Select Add action to add another action that sends an email with the Excel file attachment.

  15. For Choose an operation, select Office 365 Outlook, and the for the action select Send an email (V2).

  16. Enter the following required values for the email.

    • To: Enter a valid email address for the email recipient.
    • Subject: Enter the email subject, such as Retained Accounts from 2020.
    • Body: Enter text for the email body, such as Attached are the retained accounts from 2020.
    • Attachments Name -1: Enter a name for the attachment, such as accountsretained2020.xls.
    • Attachments content: On the Add dynamic content tab, select File or image content. Set values for email with Excel attachment
  17. Select add an action to delete the Excel file created and saved in the Dataverse table RetainedData excels:

    • Select an operation> Microsoft Dataverse.
    • Under Actions, select Delete a row.
    • Choose the following values:
      • Table name: RetainedData Excels
      • Row ID: Select Add dynamic content, and then select ExportRetainedDataResponse ExportedExcelID.
  18. Select Save

  19. Run the flow.

The email recipients receive an email with the attached Excel worksheet containing the retained data rows.