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
MultipleSpecificationObjType objecttype
Country country
_Text _Text
_MltplSpecObjectType _MltplSpecObjectType
@EndUserText.label: 'Multiple Specification Object'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.representativeKey: 'MultipleSpecificationObject'
@Analytics.technicalName: 'IMLTPLSPECOBJ'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #M, dataClass: #TRANSACTIONAL }
@Metadata.ignorePropagatedAnnotations: true

define view entity I_MltplSpecObject
  as select from tqms2
  association [0..*] to I_MltplSpecObjectText as _Text                on $projection.MultipleSpecificationObject = _Text.MultipleSpecificationObject
  association [1..1] to I_MltplSpecObjectType as _MltplSpecObjectType on $projection.MultipleSpecificationObjType = _MltplSpecObjectType.MultipleSpecificationObjType

{
  key object     as MultipleSpecificationObject,
      @ObjectModel.foreignKey.association: '_MltplSpecObjectType'
      objecttype as MultipleSpecificationObjType,
      country    as Country,

      //Associations

      _Text,
      _MltplSpecObjectType
}