Rv_I_Rspm_Dta_StorageT

DDL: RV_I_RSPM_DTA_STORAGET SQL: RVIDTASTORAGET Type: view

Rv_I_Rspm_Dta_StorageT is a CDS View in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields langu, dtaStorage.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName RVIDTASTORAGET view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey dtaStorage view
ClientDependent false view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY langu ddlanguage
KEY dtaStorage
text ddtext
//@RV.viewType: #RANGE


@AbapCatalog.sqlViewName: 'RVIDTASTORAGET' // 14

@ObjectModel.dataCategory: #TEXT
@Analytics.dataExtraction.enabled
@ObjectModel.representativeKey: 'dtaStorage'
@ClientDependent: false
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.compiler.compareFilter: true

define view Rv_I_Rspm_Dta_StorageT 
(
    langu,
    dtaStorage,
    
    text
)
as 
select from dd07t 
{
    @Semantics.language
    key ddlanguage as langu,
    key cast( domvalue_l as rspm_dta_storage ) as dtaStorage,
    
    @Semantics.text
    ddtext as text 
} where domname = 'RSPM_DTA_STORAGE' and as4local = 'A'
  
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/