Sadl_Cds_Rs_So_Root_Param_Def
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)
| Source | Alias | Join Type |
|---|---|---|
| sadl_rs_so_root | sadl_rs_so_root | from |
Parameters (3)
| Name | Type | Default |
|---|---|---|
| p_given_default | abap.sstring( 20 ) | |
| p_empty_default | abap.sstring( 20 ) | |
| p_not_hidden | abap.sstring( 20 ) |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA