I_MltplSpecObject

DDL: I_MLTPLSPECOBJECT Type: view_entity BASIC Package: VDM_QM_PLANNING

Multiple Specification Object

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

Data Sources (1)

SourceAliasJoin Type
tqms2 tqms2 from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_MltplSpecObjectText _Text $projection.MultipleSpecificationObject = _Text.MultipleSpecificationObject
[1..1] I_MltplSpecObjectType _MltplSpecObjectType $projection.MultipleSpecificationObjType = _MltplSpecObjectType.MultipleSpecificationObjType

Annotations (9)

NameValueLevelField
EndUserText.label Multiple Specification Object view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey MultipleSpecificationObject view
Analytics.technicalName IMLTPLSPECOBJ view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MultipleSpecificationObject object TRFM Object
MultipleSpecificationObjType objecttype Type
Country country Venue: Ctry/Reg
_Text _Text
_MltplSpecObjectType _MltplSpecObjectType

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_MltplSpecObject.
-- 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_MltplSpecObject AS
SELECT
  object AS MultipleSpecificationObject,
  objecttype AS MultipleSpecificationObjType,
  Country
FROM tqms2
LEFT OUTER JOIN I_MltplSpecObjectText AS _Text ON MultipleSpecificationObject = _Text.MultipleSpecificationObject  -- association [0..*]
LEFT OUTER JOIN I_MltplSpecObjectType AS _MltplSpecObjectType ON MultipleSpecificationObjType = _MltplSpecObjectType.MultipleSpecificationObjType  -- association [1..1]
;