Defining Parameter Structures
- Model parameters as a separate abstract CDS entity
- Structure contains all necessary fields for the action
- Example structure:
@EndUserText.label : 'Status Action Input Structure'
@AbapCatalog.enhancementCategory : #NOT_EXTENSIBLE
@AbapCatalog.tableCategory : #STRUCTURE
define structure zkp_status_ae {
status_code : abap.char(10);
comment : abap.string;
}