I_CstrtNewSwMatl

DDL: I_CSTRTNEWSWMATL SQL: ICSTRTNEWSWMATL Type: view BASIC

New Software Material list

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

Data Sources (1)

SourceAliasJoin Type
makt makt left_outer

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICSTRTNEWSWMATL view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey EmbeddedSoftwareMaterial view
EndUserText.label New Software Material list view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EmbeddedSoftwareMaterial Material
EmbeddedSoftwareMaterialDesc maktx
AuthorizationGroup AuthorizationGroup
EmbeddedSoftwareUUID EmbeddedSoftwareUUID
@AbapCatalog.sqlViewName: 'ICSTRTNEWSWMATL'

@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE

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

@ObjectModel.representativeKey: 'EmbeddedSoftwareMaterial'

@EndUserText.label: 'New Software Material list'
define view I_CstrtNewSwMatl as select distinct from I_CstrtSwMatlCstrt as _SwMatlCstrt
    left outer join makt on _SwMatlCstrt.Material = makt.matnr
                         and spras = $session.system_language
{
    key Material  as EmbeddedSoftwareMaterial,
        maktx     as EmbeddedSoftwareMaterialDesc,
        AuthorizationGroup,
        EmbeddedSoftwareUUID
} where EmbeddedSoftwareUUID is null
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CSTRTSWMATLCSTRT",
"MAKT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/