I_DDMaterialDocumentFieldName

DDL: I_DDMATERIALDOCUMENTFIELDNAME Type: view_entity BASIC

Material Document Fields

I_DDMaterialDocumentFieldName is a Basic CDS View that provides data about "Material Document Fields" in SAP S/4HANA. It reads from 2 data sources (dd03l, dd04t) and exposes 2 fields with key field DDMaterialDocumentFieldName.

Data Sources (2)

SourceAliasJoin Type
dd03l DD03L from
dd04t DD04T inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Document Fields view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DDMaterialDocumentFieldName dd03l fieldname
DDMaterialDocumentFieldDesc dd04t ddtext
//@AbapCatalog.viewEnhancementCategory: [#NONE]

@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Material Document Fields'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@ObjectModel.usageType:{
  serviceQuality: #B,
  sizeCategory: #S,
  dataClass: #CUSTOMIZING
}
define view entity I_DDMaterialDocumentFieldName
  as select from dd03l as DD03L
    inner join   dd04t as DD04T on  DD03L.rollname   = DD04T.rollname //DataElement

                                and DD04T.ddlanguage = $session.system_language
{
  key DD03L.fieldname as DDMaterialDocumentFieldName,
      DD04T.ddtext    as DDMaterialDocumentFieldDesc


}
where
      dd03l.as4local  = 'A'
  and DD04T.as4local  = 'A'
  and DD03L.tabname   = 'MATDOC'
  and DD03L.fieldname = 'KUNNR'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD03L",
"DD04T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/