I_MATERIALTYPETOBOOTYPE

CDS View

Allowed Material Types to Bill Of Operations Type

I_MATERIALTYPETOBOOTYPE is a CDS View in S/4HANA. Allowed Material Types to Bill Of Operations Type. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
C_ProdnRtgVersAssignableBOM view_entity inner CONSUMPTION Routing Version Assignable BOM
//@AbapCatalog.sqlViewName: 'IMATLTYPTOBOOTYP'

//@AbapCatalog.compiler.compareFilter: true

//@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #NOT_REQUIRED
//@ClientHandling.algorithm: #SESSION_VARIABLE

@Analytics.dataCategory: #FACT
@Analytics.technicalName: 'IMATLTYPTOBOOTYP'
@ObjectModel.modelingPattern: #NONE
@ObjectModel.supportedCapabilities: [#CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE]
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Allowed Material Types to Bill Of Operations Type'

//define view I_MaterialTypeToBOOType

define view entity I_MaterialTypeToBOOType
  as select from t409

  association [1..1] to I_BillOfOperationsType as _BillOfOperationsType on $projection.BillOfOperationsType = _BillOfOperationsType.BillOfOperationsType
  association [1..1] to I_MaterialType         as _MaterialType         on $projection.MaterialType = _MaterialType.MaterialType
{
       @ObjectModel.foreignKey.association: '_BillOfOperationsType'
  key  plnty as BillOfOperationsType,
       @ObjectModel.foreignKey.association: '_MaterialType'
  key  mtart as MaterialType,

       --- Associations ---
       _BillOfOperationsType,
       _MaterialType
};