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 Receiving Plant
KEY MaterialSampleStorageLocation tq41t aufbewort Sample Location
KEY Language tq41t sprache Language
MatlSampleStorageLocationText
_Plant _Plant

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_MatlSampleStorageLocationT.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_MatlSampleStorageLocationT AS
SELECT
  tq41t.werks AS MatlSamplePlant,
  tq41t.aufbewort AS MaterialSampleStorageLocation,
  tq41t.sprache AS Language,
  cast( tq41t.kurztext as vdm_qkurztxtao preserving type ) AS MatlSampleStorageLocationText
FROM tq41t
LEFT OUTER JOIN I_Plant AS _Plant ON MatlSamplePlant = _Plant.Plant  -- association [0..1]
;