You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Throughout this tutorial, object names may include a suffix or group number, such as `XXX`. Always replace this with your own group number or initials.
35
+
Throughout this tutorial, object names may include a suffix or group number, such as `_###` or `000`. Always replace this with your own group number or initials.
36
36
37
37
For more information on creating a read-only app, see the SAP Help Portal: [Developing Read-Only List Reporting Apps](https://help.sap.com/viewer/923180ddb98240829d935862025004d6/Cloud/en-US/504035c0850f44f787f5b81e35791d10.html)
38
38
@@ -45,7 +45,7 @@ For more information on creating a read-only app, see the SAP Help Portal: [Deve
4. In the browser, you can also see the **Metadata Document** of the Business Service by adding $metadata to the URL: `/sap/opu/odata/sap/Z_BIND_TRAVEL_R_XXX/$metadata`.
232
+
4. In the browser, you can also see the **Metadata Document** of the Business Service by adding $metadata to the URL: `/sap/opu/odata/sap/Z_BIND_TRAVEL_R_###/$metadata`.
@@ -255,15 +255,15 @@ The service binding automatically references the service definition and thus the
255
255
256
256
### Add annotation for automatic display
257
257
258
-
1. It would be nice if at least some fields were displayed immediately for the user. To do this, simply add the following annotation to the relevant fields in **`Z_I_TRAVEL_R_XXX`**. The start of the CDS view will then look like this.
258
+
1. It would be nice if at least some fields were displayed immediately for the user. To do this, simply add the following annotation to the relevant fields in **`Z_I_TRAVEL_R_###`**. The start of the CDS view will then look like this - for now. (Please note that you will add more annotations later on.)
259
259
260
260
> `BookingFee` is not automatically displayed. The numbers for each field are relative to the other fields and are responsive - they do not refer to a specific pixel position or similar. For larger entities, you can specify *HIGH*,*MEDIUM*, or *LOW*, so that less important fields are automatically hidden on a smaller screen, such as a mobile phone.
261
261
262
262
```CDS
263
263
@UI : {
264
264
lineItem : [{position: 10, importance: #HIGH}]
265
265
}
266
-
key TravelID;
266
+
key TravelID,
267
267
268
268
@UI : {
269
269
lineItem : [{position: 15, importance: #HIGH}]
@@ -308,8 +308,8 @@ At present, you only have minimal annotations. As you add more, your CDS view wi
308
308
309
309
3. Enter a name and description for your metadata extension object, clearly similar to your CDS view name, and choose **Next**:
310
310
311
-
- **`Z_MDE_TRAVEL_XXX`**
312
-
- **`Metadata for Z_I_TRAVEL_R_XXX`**
311
+
- **`Z_MDE_TRAVEL_###`**
312
+
- **`Metadata for Z_I_TRAVEL_R_###`**
313
313
314
314
4. Accept the transport request, choose **Next**, select all elements, then choose **Finish**.
315
315
@@ -481,7 +481,7 @@ Your CDS entity code should look like this:
481
481
sizeCategory: #S,
482
482
dataClass: #MIXED
483
483
484
-
define view Z_I_TRAVEL_R_XXX as Travel
484
+
define view entity Z_I_TRAVEL_R_### as Travel
485
485
as select from /DMO/I_Travel_U as Travel
486
486
487
487
{
@@ -525,7 +525,7 @@ Your MDE code should look like this:
0 commit comments