Skip to content

Commit de117f1

Browse files
authored
Automatic commit: Move 'hana-clients-hdbsql', 'hana-cloud-alerts', 'hana-cloud-alerts-autopilot', 'hana-cloud-dl-clients-node', 'hana-dbx-export-import' from QA to Production (#18572)
1 parent deb01da commit de117f1

11 files changed

Lines changed: 42 additions & 39 deletions

File tree

tutorials/hana-clients-hdbsql/hana-clients-hdbsql.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -480,10 +480,10 @@ Remembering and entering IP addresses, ports, user IDs and passwords can be diff
480480
481481
1. HDBSQL can [run commands](https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/6097e699826343d0879244185d680a0d.html) interactively, or non-interactively. A few examples are shown below.
482482
483-
```SQL
484-
SELECT * FROM HOTEL.CUSTOMER; -- interactive
485-
hdbsql -U USER1UserKey "SELECT * FROM HOTEL.CUSTOMER"; -- non-interactive
486-
hdbsql -U USER1UserKey -I hotel.sql -- batch file
483+
```SQL
484+
SELECT * FROM HOTEL.CUSTOMER; -- interactive
485+
hdbsql -U USER1UserKey "SELECT * FROM HOTEL.CUSTOMER"; -- non-interactive
486+
hdbsql -U USER1UserKey -I hotel.sql -- batch file
487487
```
488488
489489
2. [Substitution variables](https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/18ce51f468bc4cfe9112e6be79953e93.html) can used to pass parameters.

tutorials/hana-cloud-alerts-autopilot/hana-cloud-alerts-autopilot.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ The following steps demonstrate how to subscribe to the SAP Automation Pilot ser
3737
![create SAP Automation Pilot](create-autopilot-service.png)
3838

3939
>If the Automation Pilot service does not appear, it may be that the entitlement needs to be added to the subaccount. To do so, navigate to the subaccount, select **Entitlements**, **Configure Entitlements**, **Add Service Plans**, select **Automation Pilot**, and add a plan such as free or standard.
40+
4041
> ![add entitlement](add-entitlement.png)
4142
4243
> ---
-9.75 KB
Loading

tutorials/hana-cloud-alerts/hana-cloud-alerts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,11 +303,11 @@ In this step, ANS will be configured to act on the incoming notifications by sen
303303
304304
See also [Managing Actions](https://help.sap.com/viewer/5967a369d4b74f7a9c2b91f5df8e6ab6/Cloud/en-US/8a7e092eebc74b3ea01d506265e8c8f8.html) for details on other available action types.
305305
306-
9. Provide a **Name** and then scroll to the additional properties section.
306+
9. Provide a **Name** and then scroll to the **Advanced Action Properties** section.
307307
308308
![email action details](create-action-email-details.png)
309309
310-
In the **Additional Properties** section, provide values for **Email Address**, **Subject Template** and **Payload Template**.
310+
In the **Advanced Action Properties** section, provide values for **Email Address**, **Subject Template** and **Payload Template**.
311311
312312
![advanced action details](create-action-email-details-advanced.png)
313313
-121 KB
Loading
-117 KB
Loading
-7.01 KB
Loading

tutorials/hana-cloud-dl-clients-node/hana-cloud-dl-clients-node.md

Lines changed: 31 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ If Node.js is not installed, download the long-term support (LTS) version of Nod
4848

4949
[ACCORDION-BEGIN [Step 2: ](Install the data lake Relational Engine client for Node.js)]
5050

51+
In addition to the Node.js driver covered in this tutorial which is `@sap\iq-client`, there is also the [SQK Anywhere](https://github.com/sqlanywhere/node-sqlanywhere) driver. The @sap\iq-client driver supports newer Node.js versions and includes a promise library.
52+
5153
1. Add the dependencies to the driver.
5254

5355
```Shell (Microsoft Windows)
@@ -143,40 +145,40 @@ If Node.js is not installed, download the long-term support (LTS) version of Nod
143145
```Shell
144146
node nodeQuery.js
145147
```
146-
![Running nodeQuery.js](Node-query.png)
147148
148-
Note the above app makes use of some of the data lake Relational Engine client Node.js driver methods, such as [connect](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/13e47ad9748d4d4d9536a0518b8ecd67.html), [exec](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/1bec2bc5259d4e9da54a2e1908f246ee.html) and [disconnect](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/8dee077765f5476b8b481ab1de864f14.html).
149+
![Running nodeQuery.js](node-query-sync.png)
149150
150-
Two examples showing the drivers methods being used asynchronously are shown in the next two steps.
151+
Note the above app makes use of some of the data lake Relational Engine client Node.js driver methods, such as [connect](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/13e47ad9748d4d4d9536a0518b8ecd67.html), [exec](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/1bec2bc5259d4e9da54a2e1908f246ee.html) and [disconnect](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/8dee077765f5476b8b481ab1de864f14.html).
151152
152-
>To enable debug logging of the SAP IQ Node.js client, enter the following command and then rerun the app.
153+
Two examples showing the drivers methods being used asynchronously are shown in the next two steps.
153154
154-
>```Shell (Microsoft Windows)
155-
>set DEBUG=*
156-
>node nodeQuery.js
157-
>```
155+
>To enable debug logging of the SAP IQ Node.js client, enter the following command and then rerun the app.
158156
159-
>```Shell (Linux or Mac)
160-
>export DEBUG=*
161-
>node nodeQuery.js
162-
>```
157+
>```Shell (Microsoft Windows)
158+
>set DEBUG=*
159+
>node nodeQuery.js
160+
>```
163161
164-
> ![debug output](debug-flag.png)
162+
>```Shell (Linux or Mac)
163+
>export DEBUG=*
164+
>node nodeQuery.js
165+
>```
165166
166-
> The value of the environment variable DEBUG can be seen and removed with the commands below.
167+
> ![debug output](debug-flag.png)
167168
168-
>```Shell (Microsoft Windows)
169-
>set DEBUG
170-
>set DEBUG=
171-
>set DEBUG
172-
>```
169+
> The value of the environment variable DEBUG can be seen and removed with the commands below.
173170
174-
>```Shell (Linux or Mac)
175-
>printenv | grep DEBUG
176-
>unset DEBUG
177-
>printenv | grep DEBUG
178-
>```
171+
>```Shell (Microsoft Windows)
172+
>set DEBUG
173+
>set DEBUG=
174+
>set DEBUG
175+
>```
179176
177+
>```Shell (Linux or Mac)
178+
>printenv | grep DEBUG
179+
>unset DEBUG
180+
>printenv | grep DEBUG
181+
>```
180182
181183
[DONE]
182184
[ACCORDION-END]
@@ -265,17 +267,16 @@ Asynchronous programming enables non-blocking code execution which is demonstrat
265267
}
266268
});
267269
}
268-
269270
```
270271
271-
4. Run the app.
272+
3. Run the app.
272273
273274
```Shell
274275
node nodeQueryCallback.js
275276
```
276-
![Running nodeQueryCallback.js](Node-query-callback.png)
277+
![Running nodeQueryCallback.js](Node-query-callback.png)
277278
278-
Notice that asynchronous method calls use callback functions. See [JavaScript Asynchronous Programming and Callbacks](https://nodejs.dev/learn/javascript-asynchronous-programming-and-callbacks) for additional details.
279+
Notice that asynchronous method calls use callback functions. See [JavaScript Asynchronous Programming and Callbacks](https://nodejs.dev/learn/javascript-asynchronous-programming-and-callbacks) for additional details.
279280
280281
[DONE]
281282
[ACCORDION-END]
@@ -376,9 +377,9 @@ The Node.js driver for the data lake Relational Engine client provides support f
376377
```Shell
377378
node nodeQueryPromise.js
378379
```
379-
![Running nodeQueryPromise.js](Node-query-promise.png)
380+
![Running nodeQueryPromise.js](Node-query-promise.png)
380381
381-
The above code makes use of the [promise module](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/5410af3b00414269988301ba78d38e43.html). Additional details on promises can be found at [Understanding JavaScript Promises](https://nodejs.dev/learn/understanding-javascript-promises).
382+
The above code makes use of the [promise module](https://help.sap.com/docs/SAP_HANA_DATA_LAKE/a894a54d84f21015b142ffe773888f8c/5410af3b00414269988301ba78d38e43.html). Additional details on promises can be found at [Understanding JavaScript Promises](https://nodejs.dev/learn/understanding-javascript-promises).
382383
383384
[DONE]
384385
[ACCORDION-END]
31.3 KB
Loading
-38.3 KB
Loading

0 commit comments

Comments
 (0)