Sadl_Cds_Rs_So_Root_Param_Def

DDL: SADL_CDS_RS_SO_ROOT_PARAM_DEF SQL: SADL_SQL_SO_DEFP Type: view

View with hidden parameter default value

Sadl_Cds_Rs_So_Root_Param_Def is a CDS View that provides data about "View with hidden parameter default value" in SAP S/4HANA. It reads from 1 data source (sadl_rs_so_root) and exposes 4 fields with key field id.

Data Sources (1)

SourceAliasJoin Type
sadl_rs_so_root sadl_rs_so_root from

Parameters (3)

NameTypeDefault
p_given_default abap.sstring( 20 )
p_empty_default abap.sstring( 20 )
p_not_hidden abap.sstring( 20 )

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName SADL_SQL_SO_DEFP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label View with hidden parameter default value view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY id id
given
empty
not_hidden
@AbapCatalog.sqlViewName: 'SADL_SQL_SO_DEFP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'View with hidden parameter default value'
define view Sadl_Cds_Rs_So_Root_Param_Def //AUnit

  with parameters 
  @Consumption.defaultValue: 'FilledInAtRuntime'
  @Consumption.hidden: true
  p_given_default : abap.sstring( 20 ),
  @Consumption.defaultValue: ''
  @Consumption.hidden: true
  p_empty_default : abap.sstring( 20 ),
  @Consumption.defaultValue: 'NotSetBecauseVisible'
  p_not_hidden : abap.sstring( 20 )
as select from sadl_rs_so_root {
  key id,
  $parameters.p_given_default as given,
  $parameters.p_empty_default as empty,
  $parameters.p_not_hidden as not_hidden
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"SADL_RS_SO_ROOT"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/