I_BILLOFOPERATIONSGROUP

CDS View

Bill of Operations Group

I_BILLOFOPERATIONSGROUP is a CDS View in S/4HANA. Bill of Operations Group. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_MaintenanceTaskListGroup view from BASIC Maintenance Task List Group
@AbapCatalog.sqlViewName: 'IPPBOOGROUP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET]
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #M, dataClass: #MASTER }
@ObjectModel.representativeKey: 'BillOfOperationsGroup'
@ObjectModel.semanticKey: ['BillOfOperationsType', 'BillOfOperationsGroup']
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@EndUserText.label: 'Bill of Operations Group'

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
define view I_BillOfOperationsGroup
  as select distinct from plko

  association [1..1] to I_BillOfOperationsType as _BillOfOperationsType on $projection.BillOfOperationsType = _BillOfOperationsType.BillOfOperationsType

{
      @ObjectModel.foreignKey.association: '_BillOfOperationsType'
  key cast(plnty as billofoperationstype preserving type)  as BillOfOperationsType,
  key cast(plnnr as billofoperationsgroup preserving type) as BillOfOperationsGroup,

      // Associations

      _BillOfOperationsType
};