I_MltplSpecObjectText

DDL: I_MLTPLSPECOBJECTTEXT Type: view_entity BASIC Package: VDM_QM_PLANNING

Multiple Specification Object - Text

I_MltplSpecObjectText is a Basic CDS View that provides data about "Multiple Specification Object - Text" in SAP S/4HANA. It reads from 1 data source (tqms2t) and exposes 5 fields with key fields MultipleSpecificationObject, Language. It has 2 associations to related views. Part of development package VDM_QM_PLANNING.

Data Sources (1)

SourceAliasJoin Type
tqms2t tqms2t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_MltplSpecObject _MltplSpecObject $projection.MultipleSpecificationObject = _MltplSpecObject.MultipleSpecificationObject
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
EndUserText.label Multiple Specification Object - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey MultipleSpecificationObject view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IMLTPLSPECOBJT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MultipleSpecificationObject object TRFM Object
KEY Language langu Primary lang.
MltplSpecObjectText description Well Code Des.
_Language _Language
_MltplSpecObject _MltplSpecObject

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_MltplSpecObjectText.
-- 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_MltplSpecObjectText AS
SELECT
  object AS MultipleSpecificationObject,
  langu AS Language,
  description AS MltplSpecObjectText
FROM tqms2t
LEFT OUTER JOIN I_MltplSpecObject AS _MltplSpecObject ON MultipleSpecificationObject = _MltplSpecObject.MultipleSpecificationObject  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;