I_BILLOFOPERATIONSTYPE

CDS View

Bill of Operations Type

I_BILLOFOPERATIONSTYPE is a CDS View in S/4HANA. Bill of Operations Type. It contains 2 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
C_SchedProdnSalesDocumentVH view inner CONSUMPTION Sales Document
I_MaintenanceTaskListType view from BASIC Maintenance Task List Type

Fields (2)

KeyField CDS FieldsUsed in Views
KEY BillOfOperationsType TaskListType 1
_Text _Text 1
@AbapCatalog.sqlViewName: 'IPPBOOTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering: { status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001 }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY,#EXTRACTION_DATA_SOURCE]
@ObjectModel.representativeKey: 'BillOfOperationsType'
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Bill of Operations Type'
@ObjectModel.sapObjectNodeType.name: 'BillOfOperationsType'
@Analytics.dataExtraction.enabled: true
//@ObjectModel.sapObjectType: 'BillOfOperationsType'

define view I_BillOfOperationsType
  as select from tca01

  association [0..*] to I_BillOfOperationsTypeText as _Text                        on $projection.BillOfOperationsType = _Text.BillOfOperationsType
  association [0..1] to I_BOOApplication           as _BillOfOperationsApplication on $projection.BillOfOperationsApplication = _BillOfOperationsApplication.BillOfOperationsApplication

{
      @ObjectModel.text.association: '_Text'
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key cast(plnty as billofoperationstype preserving type)        as BillOfOperationsType,
      @ObjectModel.foreignKey.association: '_BillOfOperationsApplication'
      cast(plnaw as billofoperationsapplication preserving type) as BillOfOperationsApplication,

      // Associations

      _Text,
      _BillOfOperationsApplication
};