SAP CDS F1 ENTITY PARAMETER LIST



Get Example source ABAP code based on a different SAP table
  


• WITH PARAMETERS ABAP_CDS_DEFINE_ABSENT

ABAP_CDS_DDL - DEFINE ABSTRACT ENTITY, parameter_list

ABAP_SYNTAX
... WITH PARAMETERS parameter1, parameter2, ...

What does it do?
Defines CDS parameters parameter1, parameter2, ... as input parameters of an CDS abstract entity in a comma-separated list.
Currently, input parameters called pname are used only to model the interface of an abstract entity. They cannot be used as operands in the CDS abstract entity.



Latest notes:

An input parameter cannot be specified as an element in the element list.
NON_V5_HINTS
ABAP_HINT_END

ABAP_EXAMPLE_VX5
The following DDL source code shows a CDS abstract entity with input parameters:
DDLS DEMO_CDS_ABSTRACT_ENTITY_PARA
The class CL_DEMO_CDS_ABSTRCT_ENTTY_PARA shows that the parameter annotations of the CDS abstract entity can be evaluated using the class CL_DD_DDL_ANNOTATION_SERVICE.
ABAP_EXAMPLE_END