I_ChgRecdMstrRcpMatlAssgmt

DDL: I_CHGRECDMSTRRCPMATLASSGMT Type: view_entity COMPOSITE Package: VDM_PLMB_CR

Change Record Master Recipe Material

I_ChgRecdMstrRcpMatlAssgmt is a Composite CDS View that provides data about "Change Record Master Recipe Material" in SAP S/4HANA. It reads from 1 data source (I_BOOMaterialAssignment) and exposes 7 fields with key fields BillOfOperationsType, BillOfOperationsGroup, BillOfOperationsVariant. It has 3 associations to related views. Part of development package VDM_PLMB_CR.

Data Sources (1)

SourceAliasJoin Type
I_BOOMaterialAssignment MatAssgnmnt from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_BillOfOperationsType _BillOfOperationsType $projection.BillOfOperationsType = _BillOfOperationsType.BillOfOperationsType
[1..1] I_BillOfOperationsGroup _BillOfOperationsGroup $projection.BillOfOperationsType = _BillOfOperationsGroup.BillOfOperationsType and $projection.BillOfOperationsGroup = _BillOfOperationsGroup.BillOfOperationsGroup
[1..1] I_BillOfOperations _BillOfOperations $projection.BillOfOperationsType = _BillOfOperations.BillOfOperationsType and $projection.BillOfOperationsGroup = _BillOfOperations.BillOfOperationsGroup and $projection.BillOfOperationsVariant = _BillOfOperations.BillOfOperationsVariant

Annotations (6)

NameValueLevelField
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Change Record Master Recipe Material view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsType I_BOOMaterialAssignment BillOfOperationsType
KEY BillOfOperationsGroup I_BOOMaterialAssignment BillOfOperationsGroup
KEY BillOfOperationsVariant I_BOOMaterialAssignment BillOfOperationsVariant
Material
_BillOfOperations _BillOfOperations
_BillOfOperationsGroup _BillOfOperationsGroup
_BillOfOperationsType _BillOfOperationsType
@VDM.viewType:#COMPOSITE
@ObjectModel.usageType: { serviceQuality: #C, sizeCategory: #M, dataClass: #MASTER }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Change Record Master Recipe Material'
define view entity I_ChgRecdMstrRcpMatlAssgmt as select from I_BOOMaterialAssignment as MatAssgnmnt
association [1..1] to I_BillOfOperationsType    as _BillOfOperationsType  on  $projection.BillOfOperationsType = _BillOfOperationsType.BillOfOperationsType
  association [1..1] to I_BillOfOperationsGroup   as _BillOfOperationsGroup on  $projection.BillOfOperationsType  = _BillOfOperationsGroup.BillOfOperationsType
                                                                            and $projection.BillOfOperationsGroup = _BillOfOperationsGroup.BillOfOperationsGroup
  association [1..1] to I_BillOfOperations        as _BillOfOperations      on  $projection.BillOfOperationsType    = _BillOfOperations.BillOfOperationsType
                                                                            and $projection.BillOfOperationsGroup   = _BillOfOperations.BillOfOperationsGroup
                                                                            and $projection.BillOfOperationsVariant = _BillOfOperations.BillOfOperationsVariant

{
   @ObjectModel.foreignKey.association: '_BillOfOperationsType'
  key MatAssgnmnt.BillOfOperationsType,
   @ObjectModel.foreignKey.association: '_BillOfOperationsGroup'
  key MatAssgnmnt.BillOfOperationsGroup,
   @ObjectModel.foreignKey.association: '_BillOfOperations'
  key MatAssgnmnt.BillOfOperationsVariant,
  min( Material ) as Material,
  _BillOfOperations,
  _BillOfOperationsGroup,
  _BillOfOperationsType
      
}
group by MatAssgnmnt.BillOfOperationsType,
 MatAssgnmnt.BillOfOperationsGroup, MatAssgnmnt.BillOfOperationsVariant