zoukankan      html  css  js  c++  java
  • How to use Power Automate to extract data from Microsoft Dynamics 365 Finance and Operations via Data management package REST API

     

      

    In Microsoft Dynamics 365 Finance and Operations there are two APIs strategies that support file-based integration scenarios:

    1. Data management framework's package API
    2. Recurring integrations API

    Both APIs support data import and data export scenarios, and both use batches. Batch data APIs are considered asynchronous integration patterns because when these APIs are called, data is imported or exported in batch mode. However, calls to these APIs are synchronous. For example, a call to the ExportToPackage API schedules a job to import only a specific data package. The scheduling job is quickly returned (synchronously), and the work is done later in a batch (asynchronously). Therefore, batch data APIs are categorized as asynchronous.

    In this article, we will review how to leverage Power Automate and the Data Management package REST API to extract data from Dynamics 365 Finance. We will use the example of extracting “Customer groups” in Dynamics 365 Finance. However, any data entity that is exposed can be leveraged to export data from the system. Here are high level steps:

    1. The flow is triggered manually from Power Automate. However, it can be automated as well based on certain events that can be used with Power Automate.
    2. The request is submitted from Power Automate to Dynamics 365 Finance to extract the ‘Customer Group’ data. The entity is configurable and other entities can be used as well.
    3. A data project execution job is scheduled and run in Dynamics 365 Finance.
    4. Wait for the data project execution for a specific duration to see if the data project execution is completed successfully.
    5. Retrieve the package URL from the data project execution.
    6. Leverage Data Package URL to extract the file and store it on One Drive for Business (or another supported data storage service).
    7. From here the information can be retrieved and reviewed or shared with other systems.

    If Power Automate steps are named appropriately, it can be sufficient to explain all the steps, screenshot below provide details:

    Power Automate – Important steps in this flow

  • 相关阅读:
    您还在用下一步下一步的方式安装SQLSERVER和SQLSERVER补丁吗?
    SQLSERVER误删除了Windows登录用户验证方式使用Windows身份验证的解决方法
    批量解密SQLSERVER数据库中的各种对象的工具dbForge SQL Decryptor
    SQLSERVER将数据移到另一个文件组之后清空文件组并删除文件组
    SQLSERVER群集故障转移笔记
    兼容,原来在这里就已经開始--------Day34
    Objective-C的对象模型和runtime机制
    CF B. Kolya and Tandem Repeat
    循环队列的实现
    LintCode 子树
  • 原文地址:https://www.cnblogs.com/lingdanglfw/p/14843295.html
Copyright © 2011-2022 走看看