I_MaterialDocumentRecordTypeT

DDL: I_MATERIALDOCUMENTRECORDTYPET Type: view_entity BASIC Package: MM_IM_VDM_COMMON

Material Document Record Type Text

I_MaterialDocumentRecordTypeT is a Basic CDS View that provides data about "Material Document Record Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, MaterialDocumentRecordType. It has 2 associations to related views. Part of development package MM_IM_VDM_COMMON.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Document Record Type Text view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IMATDOCRECRDTYT view
ObjectModel.representativeKey MaterialDocumentRecordType view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.private false view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY MaterialDocumentRecordType
MaterialDocRecordTypeName
_Language _Language
_MaterialDocumentRecordType _MaterialDocumentRecordType
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Material Document Record Type Text'

@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'IMATDOCRECRDTYT'
@ObjectModel.representativeKey: 'MaterialDocumentRecordType'

@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass:#CUSTOMIZING
@VDM: {
        private: false,
        viewType: #BASIC,
        lifecycle.contract.type: #SAP_INTERNAL_API
        }

define view entity I_MaterialDocumentRecordTypeT 
as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_MaterialDocumentRecordType as _MaterialDocumentRecordType on $projection.MaterialDocumentRecordType = _MaterialDocumentRecordType.MaterialDocumentRecordType
{
  @Semantics.language
  key cast( ddlanguage as spras ) as Language,
  @ObjectModel.foreignKey.association: '_MaterialDocumentRecordType'
  key cast ( cast ( substring( domvalue_l, 1, 30 ) as abap.char( 30 ) ) as nsdm_record_type ) as MaterialDocumentRecordType,
    
  @Semantics.text
  cast ( substring ( ddtext, 1, 60 ) as nsdm_record_type_name ) as MaterialDocRecordTypeName, 
  
  _Language,
  _MaterialDocumentRecordType    
} where domname = 'NSDM_RECORD_TYPE' and as4local = 'A'