I_MatlSampleStorageLocationT

DDL: I_MATLSAMPLESTORAGELOCATIONT Type: view_entity BASIC Package: VDM_QM_INSPECTION

Material Sample Storage Location Text

I_MatlSampleStorageLocationT is a Basic CDS View that provides data about "Material Sample Storage Location Text" in SAP S/4HANA. It reads from 1 data source (tq41t) and exposes 5 fields with key fields MatlSamplePlant, MaterialSampleStorageLocation, Language. It has 1 association to related views. Part of development package VDM_QM_INSPECTION.

Data Sources (1)

SourceAliasJoin Type
tq41t tq41t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Plant _Plant $projection.MatlSamplePlant = _Plant.Plant

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IMTLSMPLSTORLOCT view
ObjectModel.representativeKey MaterialSampleStorageLocation view
EndUserText.label Material Sample Storage Location Text view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MatlSamplePlant tq41t werks
KEY MaterialSampleStorageLocation tq41t aufbewort
KEY Language tq41t sprache
MatlSampleStorageLocationText
_Plant _Plant
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'IMTLSMPLSTORLOCT'
@ObjectModel.representativeKey: 'MaterialSampleStorageLocation'
@EndUserText.label: 'Material Sample Storage Location Text'
@VDM.viewType: #BASIC
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
define view entity I_MatlSampleStorageLocationT 
as select from tq41t 
   association [0..1] to I_Plant as _Plant 
      on $projection.MatlSamplePlant = _Plant.Plant

{
    @ObjectModel.foreignKey.association: '_Plant'
    key tq41t.werks     as MatlSamplePlant, 
    key tq41t.aufbewort as MaterialSampleStorageLocation, 
    @Semantics.language: true
    key tq41t.sprache   as Language,
    @Semantics.text: true
    cast( tq41t.kurztext as vdm_qkurztxtao preserving type )    as MatlSampleStorageLocationText,
    
    _Plant
}