I_MltplSpecObject

DDL: I_MLTPLSPECOBJECT SQL: IMLTPLSPECOBJ Type: view BASIC

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.

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 (12)

NameValueLevelField
AbapCatalog.sqlViewName IMLTPLSPECOBJ view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Multiple Specification Object view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey MultipleSpecificationObject 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
@AbapCatalog.sqlViewName: 'IMLTPLSPECOBJ'
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Multiple Specification Object'
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'MultipleSpecificationObject'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #M, dataClass: #TRANSACTIONAL }
@Metadata.ignorePropagatedAnnotations: true

define view 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
}