Skip to content

Commit 200990a

Browse files
authored
Merge pull request #3733 from julieplummer20/master
Automatic commit: Move abap-dev-adt-create-cds-view from QA to Produc…
2 parents be4f3dc + d2b7a8d commit 200990a

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

tutorials/abap-dev-adt-create-cds-view/abap-dev-adt-create-cds-view.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Create a Simple ABAP CDS View in ADT
2+
title: Create a Simple ABAP CDS View in ADT
33
description: You will learn how to create a CDS (Core Data Services) view using ABAP Development Tools (ADT).
44
auto_validation: true
55
primary_tag: topic>abap-development
@@ -108,7 +108,7 @@ You will now add fields of related data sources to the SELECT list of `Z_Invoice
108108

109109
4. Add the `payment_status` from the invoice header to the SELECT list using the association **header**
110110

111-
![Image depicting step9-AddFields](step9-AddRelatedFields.png)
111+
![Image depicting step9-AddRelatedFields](step9-AddRelatedFields.png)
112112

113113
[DONE]
114114
[ACCORDION-END]
@@ -149,9 +149,10 @@ You will now filter the results so that only invoice items with `currency_code =
149149
[ACCORDION-END]
150150
151151
[ACCORDION-BEGIN [Step 8: ](Check your code and view your changes)]
152-
Your CDS view code should look like this:
152+
Your CDS view code should look something like this:
153153
154154
```ABAP
155+
155156
@AbapCatalog.sqlViewName: 'ZITEMS_XXX'
156157
@AbapCatalog.compiler.compareFilter: true
157158
@AccessControl.authorizationCheck: #NOT_REQUIRED
@@ -177,6 +178,7 @@ define view Z_Invoice_Items_2
177178
}
178179
179180
where currency_code = 'USD'
181+
180182
```
181183
Open the CDS View in the Data Preview by choosing **F8**. Your CDS View should look like this:
182184

-27.7 KB
Loading

0 commit comments

Comments
 (0)