Skip to content

Commit 7dc3bca

Browse files
authored
Clarified how to modify OPDG configuration file
The default section appears to have been removed in current releases, so we need to explain customers how to declare one.
1 parent 9c52e20 commit 7dc3bca

File tree

1 file changed

+34
-2
lines changed

1 file changed

+34
-2
lines changed

articles/logic-apps/logic-apps-using-sap-connector.md

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: divyaswarnkar
77
ms.author: divswa
88
ms.reviewer: estfan, daviburg, azla
99
ms.topic: how-to
10-
ms.date: 08/16/2022
10+
ms.date: 08/22/2022
1111
tags: connectors
1212
---
1313

@@ -898,7 +898,39 @@ If you're receiving this error message and experience intermittent failures call
898898

899899
1. Check SAP settings in your on-premises data gateway service configuration file, `Microsoft.PowerBI.EnterpriseGateway.exe.config`.
900900

901-
The retry count setting looks like `WebhookRetryMaximumCount="2"`. The retry interval setting looks like `WebhookRetryDefaultDelay="00:00:00.10"` and the timespan format is `HH:mm:ss.ff`.
901+
1. Add a `configSections` element under the `configuration` root node if it is not already present.
902+
1. Add a `section` element with attributes `name="SapAdapterSection" type="Microsoft.Adapters.SAP.Common.SapAdapterSection, Microsoft.Adapters.SAP.Common"` under the `configSections` node if it is not already present.
903+
904+
> [!IMPORTANT]
905+
> Do not modify attributes of existing `section` elements if such elements already exist.
906+
907+
1. If no other section or section group is declared in the configuration, the `configSections` element will be a follows:
908+
909+
```xml
910+
<configSections>
911+
<section name="SapAdapterSection" type="Microsoft.Adapters.SAP.Common.SapAdapterSection, Microsoft.Adapters.SAP.Common"/>
912+
</configSections>
913+
```
914+
915+
1. Add a `SapAdapterSection` element under the `configuration` root node if it is not already present.
916+
1. Add a `Broker` element with attributes `WebhookRetryDefaultDelay="00:00:00.10" WebhookRetryMaximumCount="2"` under the `SapAdapterSection` node if it is not already present.
917+
918+
> [!IMPORTANT]
919+
> Modify attributes of existing `Broker` element if such element already exists.
920+
921+
1. If no other element or attribute is declared in the SAP adapter configuration, the `SapAdapterSection` element will be a follows:
922+
923+
```xml
924+
<SapAdapterSection>
925+
<Broker WebhookRetryDefaultDelay="00:00:00.10" WebhookRetryMaximumCount="2" />
926+
</SapAdapterSection>
927+
```
928+
929+
The retry count setting looks like `WebhookRetryMaximumCount="2"`. The retry interval setting looks like `WebhookRetryDefaultDelay="00:00:00.10"` and the timespan format is `HH:mm:ss.ff`.
930+
931+
> [!NOTE]
932+
> For more information about the configuration file,
933+
> read [Configuration file schema for .NET Framework](/dotnet/framework/configure-apps/file-schema/).
902934

903935
1. Save your changes. Restart your on-premises data gateway.
904936

0 commit comments

Comments
 (0)