Rv_I_Rsds_RequtypeT

DDL: RV_I_RSDS_REQUTYPET SQL: RVIDATASRCTPT Type: view

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

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (6)

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

Fields (3)

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


@AbapCatalog.sqlViewName: 'RVIDATASRCTPT' // 13

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

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