Skip to content

Commit de58eb5

Browse files
authored
Use comma in CSV instead of semicolon in extensibility guide (#2387)
For nicer syntax coloring with the `csv` language
1 parent ff5cbd7 commit de58eb5

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

guides/extensibility/customization.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,9 @@ To support [quick-turnaround tests of extensions](#test-locally) using `cds watc
224224
::: code-group
225225
226226
```csv [test/data/sap.capire.orders-Orders.csv]
227-
ID;createdAt;buyer;OrderNo;currency_code;
228-
7e2f2640-6866-4dcf-8f4d-3027aa831cad;2019-01-31;[email protected];1;EUR
229-
64e718c9-ff99-47f1-8ca3-950c850777d4;2019-01-30;[email protected];2;EUR
227+
ID,createdAt,buyer,OrderNo,currency_code
228+
7e2f2640-6866-4dcf-8f4d-3027aa831cad,2019-01-31,[email protected],1,EUR
229+
64e718c9-ff99-47f1-8ca3-950c850777d4,2019-01-30,[email protected],2,EUR
230230
```
231231
232232
:::
@@ -474,9 +474,9 @@ Edit the template-provided file `test/data/sap.capire.orders-Orders.csv` and add
474474
::: code-group
475475

476476
```csv [test/data/sap.capire.orders-Orders.csv]
477-
ID;createdAt;buyer;OrderNo;currency_code;x_priority;x_salesRegion_code
478-
7e2f2640-6866-4dcf-8f4d-3027aa831cad;2019-01-31;[email protected];1;EUR;high;EMEA
479-
64e718c9-ff99-47f1-8ca3-950c850777d4;2019-01-30;[email protected];2;EUR;low;APJ
477+
ID,createdAt,buyer,OrderNo,currency_code,x_priority,x_salesRegion_code
478+
7e2f2640-6866-4dcf-8f4d-3027aa831cad,2019-01-31,[email protected],1,EUR,high,EMEA
479+
64e718c9-ff99-47f1-8ca3-950c850777d4,2019-01-30,[email protected],2,EUR,low,APJ
480480
```
481481

482482
:::
@@ -486,10 +486,10 @@ Create a new file `test/data/x_orders.ext-x_SalesRegion.csv` with this content:
486486
::: code-group
487487

488488
```csv [test/data/x_orders.ext-x_SalesRegion.csv]
489-
code;name;descr
490-
AMER;Americas;North, Central and South America
491-
EMEA;Europe, the Middle East and Africa;Europe, the Middle East and Africa
492-
APJ;Asia Pacific and Japan;Asia Pacific and Japan
489+
code,name,descr
490+
AMER,"Americas","North, Central and South America"
491+
EMEA,"Europe, the Middle East and Africa","Europe, the Middle East and Africa"
492+
APJ,"Asia Pacific and Japan","Asia Pacific and Japan"
493493
```
494494

495495
:::
@@ -1029,8 +1029,8 @@ Append `--delete-settings` to include saved project settings for the current pro
10291029
10301030
`cds help logout` is available for more details.
10311031
1032-
::: tip
1033-
When your role-collection assignments have changed, run `cds logout` followed by `cds login` in order to fetch a token containing the new set of scopes.
1032+
::: tip Re-authenticate when your role-collection assignments have changed
1033+
Run `cds logout` followed by `cds login` in order to fetch a token with the new scopes.
10341034
:::
10351035
10361036
### Debugging
@@ -1060,15 +1060,15 @@ As described in [Add Data](#add-data), you can provide local test data and initi
10601060
::: code-group
10611061
10621062
```csv [sap.capire.orders-Orders.csv]
1063-
ID;x_priority;x_salesRegion_code
1064-
7e2f2640-6866-4dcf-8f4d-3027aa831cad;high;EMEA
1065-
64e718c9-ff99-47f1-8ca3-950c850777d4;low;APJ
1063+
ID,x_priority,x_salesRegion_code
1064+
7e2f2640-6866-4dcf-8f4d-3027aa831cad,high,EMEA
1065+
64e718c9-ff99-47f1-8ca3-950c850777d4,low,APJ
10661066
```
10671067
10681068
:::
10691069
1070-
::: warning _
1071-
Adding data only for the missing columns doesn't work when using SAP HANA as a database. With SAP HANA, you always have to provide the full set of data.
1070+
::: warning Adding data only for missing columns doesn't work with SAP HANA
1071+
With SAP HANA, you always have to provide the full set of data.
10721072
:::
10731073

10741074
<span id="afterAddingData" />

0 commit comments

Comments
 (0)