I_MatlSampleStorageCondition

DDL: I_MATLSAMPLESTORAGECONDITION SQL: IMATLSMPLSTCD Type: view BASIC Package: VDM_QM_INSPECTION

Material Sample Storage Condition

I_MatlSampleStorageCondition is a Basic CDS View (Dimension) that provides data about "Material Sample Storage Condition" in SAP S/4HANA. It reads from 1 data source (tq43) and exposes 2 fields with key field MatlSampleStorageCondition. It has 1 association to related views. Part of development package VDM_QM_INSPECTION.

Data Sources (1)

SourceAliasJoin Type
tq43 tq43 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MatlSampleStorageConditionT _Text $projection.MatlSampleStorageCondition = _Text.MatlSampleStorageCondition

Annotations (10)

NameValueLevelField
EndUserText.label Material Sample Storage Condition view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IMATLSMPLSTCD view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey MatlSampleStorageCondition view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MatlSampleStorageCondition stabicon Storage Cond.
_Text _Text

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_MatlSampleStorageCondition.
-- 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.
-- SQL view name: IMATLSMPLSTCD

CREATE VIEW I_MatlSampleStorageCondition AS
SELECT
  stabicon AS MatlSampleStorageCondition
FROM tq43
LEFT OUTER JOIN I_MatlSampleStorageConditionT AS _Text ON MatlSampleStorageCondition = _Text.MatlSampleStorageCondition  -- association [0..*]
;