I_MaterialDocumentRecordType

DDL: I_MATERIALDOCUMENTRECORDTYPE Type: view BASIC

Material Document Record Type

I_MaterialDocumentRecordType is a Basic CDS View (Dimension) that provides data about "Material Document Record Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field MaterialDocumentRecordType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaterialDocumentRecordTypeT _Text $projection.MaterialDocumentRecordType = _Text.MaterialDocumentRecordType

Annotations (15)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IMATDOCRECRDTYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Document Record Type view
ObjectModel.representativeKey MaterialDocumentRecordType view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private false view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Search.searchable true view
Analytics.dataCategory #DIMENSION view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaterialDocumentRecordType
DomainValue dd07l domvalue_l
_Text _Text
@AbapCatalog: {
                preserveKey: true,
                sqlViewName: 'IMATDOCRECRDTYPE',
                compiler.compareFilter: true
              }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Material Document Record Type'
@ObjectModel: {
                representativeKey: 'MaterialDocumentRecordType',
                usageType: {
                             sizeCategory: #S,
                             serviceQuality: #A,
                             dataClass:#CUSTOMIZING
                           }
               }
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
        private: false,
        viewType: #BASIC,
        lifecycle.contract.type: #SAP_INTERNAL_API
        }
@Search.searchable: true
@Analytics: { dataCategory: #DIMENSION } 

define view I_MaterialDocumentRecordType 
as select from dd07l 
association [0..*] to I_MaterialDocumentRecordTypeT as _Text on $projection.MaterialDocumentRecordType = _Text.MaterialDocumentRecordType
{
      @ObjectModel.text.association: '_Text'
  key cast ( cast ( substring( domvalue_l, 1, 30 ) as abap.char( 30 ) ) as nsdm_record_type ) as MaterialDocumentRecordType,
      @Analytics.hidden: true
      @Consumption.hidden: true
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      dd07l.domvalue_l as DomainValue,
  
      _Text
} where domname = 'NSDM_RECORD_TYPE' and as4local = 'A'    

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_MATERIALDOCUMENTRECORDTYPET"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/