remove/select 字段是否有 CDS 视图注释 (ABAP)?
Is there a CDS view annotation (ABAP) to remove/select a field?
我从数据集创建了一个 ABAP CDS 视图。此数据集包含具有字段“OrderID”(从订单 1 到订单 10000)的数据。基于这个字段 OrderID,我想创建 2 个查询视图:一个只包含订单 1 到 20 的数据,另一个包含订单 50 到 70。
因此,我想知道是否有注释 select 我想要 show/remove 的值。出于性能原因,我不想过滤。
使用 where
子句,as described in the ABAP keyword documentation:
define view first_query_view as
select from your_base_view
{ ... }
where OrderID between 1 and 20;
define view second_query_view as
select from your_base_view
{ ... }
where OrderID between 50 and 70;
注释解释了如何使用视图和其中的元素。他们不控制数据的检索、连接或过滤方式。
我从数据集创建了一个 ABAP CDS 视图。此数据集包含具有字段“OrderID”(从订单 1 到订单 10000)的数据。基于这个字段 OrderID,我想创建 2 个查询视图:一个只包含订单 1 到 20 的数据,另一个包含订单 50 到 70。
因此,我想知道是否有注释 select 我想要 show/remove 的值。出于性能原因,我不想过滤。
使用 where
子句,as described in the ABAP keyword documentation:
define view first_query_view as
select from your_base_view
{ ... }
where OrderID between 1 and 20;
define view second_query_view as
select from your_base_view
{ ... }
where OrderID between 50 and 70;
注释解释了如何使用视图和其中的元素。他们不控制数据的检索、连接或过滤方式。