Update content

This commit is contained in:
danrega
2023-04-14 14:41:29 +02:00
parent 3fd765ccb7
commit e30db53953
7 changed files with 20 additions and 21 deletions

View File

@@ -243,7 +243,7 @@ CLASS zcl_demo_abap_sql IMPLEMENTATION.
INTO @DATA(exists).
IF exists = abap_true.
output->display( |A line was found.| ).
output->display( `A line was found.` ).
ELSE.
output->display( `Nothing found.` ).
ENDIF.
@@ -547,7 +547,6 @@ CLASS zcl_demo_abap_sql IMPLEMENTATION.
output->display( input = dref->* name = `dref->*` ).
**********************************************************************
output->next_section( `Excursion: ABAP SQL - Operands and Expressions` ).

View File

@@ -30,7 +30,7 @@ define view entity zdemo_abap_cds_ve_agg_exp
// - Aggregate expressions can be used as elements of an element list. Other positions are possible.
// - An alias name must be specified.
// - A GROUP BY clause is required. It must list all non-aggregated fields from the element list.
// - Additions: If ALL is used, all rows in the result set are respected. This the default setting.
// - Additions: If ALL is used, all rows in the result set are respected. This is the default setting.
// If DISTINCT is used, only distinct values of an argument are respected.
// AVG (Returns the average value of an argument)