SAP CDS F1 CUSTOM PARAMETER LIST



Get Example source ABAP code based on a different SAP table
  


• WITH PARAMETERS ABAP_CDS_DEFINE_CUSTOM

ABAP_CDS_DDL - DEFINE CUSTOM ENTITY, parameter_list

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

What does it do?
Defines CDS parameters parameter1, parameter2, ... as input parameters of a CDS custom entity in a comma-separated list.
An input parameter called pname is used to model the interface of a CDS custom entity. It cannot be used in the element list of the CDS custom entity.

ABAP_EXAMPLE_VX5
The following DDL source code shows a CDS custom entity with an input parameter:
DDLS DEMO_CDS_CUSTOM_ENTITY
This CDS custom entity is used in the executable example for implementing a custom entity.
ABAP_EXAMPLE_END