I_BillOfOperationsVersionType

DDL: I_BILLOFOPERATIONSVERSIONTYPE SQL: IPPBOOVTYPE Type: view BASIC Package: MPE_PLAN_RTG_VERS

Bill of Operations Version Type

I_BillOfOperationsVersionType is a Basic CDS View (Dimension) that provides data about "Bill of Operations Version Type" in SAP S/4HANA. It reads from 1 data source (tca01_subtype) and exposes 13 fields with key field BillOfOperationsVersionType. It has 3 associations to related views. Part of development package MPE_PLAN_RTG_VERS.

Data Sources (1)

SourceAliasJoin Type
tca01_subtype tca01_subtype from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_BOOVersionTypeText _Text $projection.BillOfOperationsVersionType = _Text.BillOfOperationsVersionType
[0..1] I_BillOfOperationsUsage _BillOfOperationsUsage $projection.BillOfOperationsUsage = _BillOfOperationsUsage.BillOfOperationsUsage
[0..1] I_BillOfOperationsStatus _BillOfOperationsStatus $projection.BillOfOperationsStatus = _BillOfOperationsStatus.BillOfOperationsStatus

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IPPBOOVTYPE view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey BillOfOperationsVersionType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Bill of Operations Version Type view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsVersionType subtype
BOOVersionTypeIsDefault default_subtype
BOOVersionIsSuccessive successive_vers
BOOVersionIsNumeric numeric_version
BOOVersionChangeRecordIsRqd change_record_required
BOOVersionIsMBOMUpgradeAllwd upgrade_mbom
BOOVersionIsSingleMBOMRequired single_mbom
BillOfOperationsUsage default_verwe
BillOfOperationsStatus default_statu
ScenarioID workflow_scenario_id
_Text _Text
_BillOfOperationsUsage _BillOfOperationsUsage
_BillOfOperationsStatus _BillOfOperationsStatus
@AbapCatalog.sqlViewName: 'IPPBOOVTYPE'
@AbapCatalog.buffering: { status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001 }
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true 
@ObjectModel.representativeKey: 'BillOfOperationsVersionType'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Bill of Operations Version Type'

define view I_BillOfOperationsVersionType
  as select from tca01_subtype
  association [0..*] to I_BOOVersionTypeText     as _Text                   on $projection.BillOfOperationsVersionType = _Text.BillOfOperationsVersionType
  association [0..1] to I_BillOfOperationsUsage  as _BillOfOperationsUsage  on $projection.BillOfOperationsUsage       = _BillOfOperationsUsage.BillOfOperationsUsage
  association [0..1] to I_BillOfOperationsStatus as _BillOfOperationsStatus on $projection.BillOfOperationsStatus      = _BillOfOperationsStatus.BillOfOperationsStatus
{
      @ObjectModel.text.association: '_Text'
  key subtype as BillOfOperationsVersionType,
      default_subtype        as BOOVersionTypeIsDefault,
      successive_vers        as BOOVersionIsSuccessive,     
      numeric_version        as BOOVersionIsNumeric,
      change_record_required as BOOVersionChangeRecordIsRqd,
      upgrade_mbom           as BOOVersionIsMBOMUpgradeAllwd,
      single_mbom            as BOOVersionIsSingleMBOMRequired,
      @ObjectModel.foreignKey.association: '_BillOfOperationsUsage'
      default_verwe          as BillOfOperationsUsage,
      @ObjectModel.foreignKey.association: '_BillOfOperationsStatus'      
      default_statu          as BillOfOperationsStatus,
      workflow_scenario_id   as ScenarioID,
      // Associations

      _Text,
      _BillOfOperationsUsage,
      _BillOfOperationsStatus
};