I_CstrtSwMatl

DDL: I_CSTRTSWMATL SQL: ICSTRTSWMATL Type: view BASIC

Software Material List

I_CstrtSwMatl is a Basic CDS View that provides data about "Software Material List" in SAP S/4HANA. It reads from 1 data source (makt) and exposes 3 fields with key field EmbeddedSwCstrtSoftwareMatl.

Data Sources (1)

SourceAliasJoin Type
makt makt left_outer

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICSTRTSWMATL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey EmbeddedSwCstrtSoftwareMatl view
EndUserText.label Software Material List view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EmbeddedSwCstrtSoftwareMatl Material
AuthorizationGroup AuthorizationGroup
EmbeddedSwCstrtSwMaterialDesc maktx
@AbapCatalog.sqlViewName: 'ICSTRTSWMATL'

@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #C

@ObjectModel.representativeKey: 'EmbeddedSwCstrtSoftwareMatl'

@EndUserText.label: 'Software Material List'
define view I_CstrtSwMatl as select distinct from I_CstrtSwMatlCstrt 
    left outer join makt             on  I_CstrtSwMatlCstrt.Material= makt.matnr
                                     and spras = $session.system_language
{
    key Material                       as EmbeddedSwCstrtSoftwareMatl,
        AuthorizationGroup,
        @Semantics.text: true
        maktx                          as EmbeddedSwCstrtSwMaterialDesc 
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CSTRTSWMATLCSTRT",
"MAKT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/