I_ACMMaterialDetailsText

DDL: I_ACMMATERIALDETAILSTEXT SQL: IMATERIALDETTEXT Type: view BASIC

ACM Material Details - Text

I_ACMMaterialDetailsText is a Basic CDS View that provides data about "ACM Material Details - Text" in SAP S/4HANA. It reads from 1 data source (makt) and exposes 5 fields with key fields Product, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
makt makt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMATERIALDETTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label ACM Material Details - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Product matnr
KEY Language spras
LanguageISOCode
ProductDescription maktx
_Material _Material
@AbapCatalog.sqlViewName: 'IMATERIALDETTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.dataCategory: #TEXT
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
               usageType: {
                 dataClass: #MASTER,
                 serviceQuality: #A,
                 sizeCategory: #L
               }

}
@EndUserText.label: 'ACM Material Details - Text'
define view I_ACMMaterialDetailsText as select from makt
association to parent I_ACMMaterialDetails as _Material
on $projection.Product = _Material.Product
  association [0..1] to  I_Language  as _Language on $projection.Language = _Language.Language
{
  key matnr     as Product,
  key spras     as Language,
      cast(_Language.LanguageISOCode as languageisocode preserving type ) as LanguageISOCode,
      maktx     as ProductDescription,
     
      _Material
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_LANGUAGE",
"MAKT"
],
"ASSOCIATED":
[
"I_ACMMATERIALDETAILS",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/