Skip to content

Commit c0e2687

Browse files
committed
Fix Logic Apps instructions
1 parent 32735b3 commit c0e2687

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

articles/iot/howto-connect-on-premises-sap-to-azure.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,26 @@ The Azure Logic Apps workflow moves data from your on-premises SAP system to Azu
5050

5151
1. On the next page, for **Folder path** enter *sap*, for **File name** enter *IDoc.xml*, and for **File content** select **Body** from the dynamic content.
5252

53-
1. Select the **+** button between the trigger and the create file action and then select **Add a parallel branch**. Select **Azure Data Explorer** and add the action **Run KQL query**. Select **Sign in**, enter the cluster URL of your Azure Data Explorer instance and the database name in your Azure Data Explorer service instance. In the query field, enter `.create table SAP (name:string, label:string)`.
54-
5553
1. Save your workflow.
5654

57-
1. Select **Run** and wait for the run to complete. Verify that there are green check marks on all three components of your workflow. If you see any red exclamation marks, select the component for more information about the error.
55+
1. Select **Run** and wait for the run to complete. Verify that there are green check marks on both components of your workflow. If you see any red exclamation marks, select the component for more information about the error.
5856

5957
Copy the **HTTP URL** from the HTTP trigger in your workflow. You need it when you configure your SAP system in the next step.
6058

59+
### Create a table in Azure Data Explorer
60+
61+
To store the data from your SAP system, create a table in your Azure Data Explorer database. To create the table, follow these steps:
62+
63+
1. In the Azure portal, navigate to your Azure Data Explorer database. You can use the **ontologies** database that's part of the Azure Industrial IoT reference solution.
64+
65+
1. Run the following Azure Data Explorer query:
66+
67+
```kusto
68+
.create table SAP (name:string, label:string)
69+
```
70+
71+
This query creates a table named **SAP** with two columns: **name** and **label**.
72+
6173
### Configure an on-premises SAP system
6274
6375
To configure an on-premises SAP system to send data to your Logic Apps workflow, follow these steps:

0 commit comments

Comments
 (0)