File tree Expand file tree Collapse file tree
tutorials/abap-dev-adt-create-cds-view Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11---
2- title : Create a Simple ABAP CDS View in ADT
2+ title : Create a Simple ABAP CDS View in ADT
33description : You will learn how to create a CDS (Core Data Services) view using ABAP Development Tools (ADT).
44auto_validation : true
55primary_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
1091094. Add the ` payment_status ` from the invoice header to the SELECT list using the association ** header**
110110
111- 
111+ 
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
179180where currency_code = 'USD'
181+
180182```
181183Open the CDS View in the Data Preview by choosing ** F8** . Your CDS View should look like this:
182184
You can’t perform that action at this time.
0 commit comments