I_BillOfOperations
Bill of Operations
I_BillOfOperations is a Basic CDS View (Dimension) that provides data about "Bill of Operations" in SAP S/4HANA. It reads from 1 data source (plkz) and exposes 28 fields with key fields BillOfOperationsType, BillOfOperationsGroup, BillOfOperationsVariant. It has 6 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| plkz | plkz | from |
Associations (6)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_BillOfOperationsType | _BillOfOperationsType | $projection.BillOfOperationsType = _BillOfOperationsType.BillOfOperationsType |
| [0..1] | I_BillOfOperationsVersionType | _BillOfOperationsVersionType | $projection.BillOfOperationsVersionType = _BillOfOperationsVersionType.BillOfOperationsVersionType |
| [1..1] | I_BillOfOperationsGroup | _BillOfOperationsGroup | $projection.BillOfOperationsType = _BillOfOperationsGroup.BillOfOperationsType and $projection.BillOfOperationsGroup = _BillOfOperationsGroup.BillOfOperationsGroup -- to child: Change State of Root |
| [1..*] | I_BillOfOperationsChangeState | _BillOfOperationsChangeState | $projection.BillOfOperationsType = _BillOfOperationsChangeState.BillOfOperationsType and $projection.BillOfOperationsGroup = _BillOfOperationsChangeState.BillOfOperationsGroup and $projection.BillOfOperationsVariant = _BillOfOperationsChangeState.BillOfOperationsVariant -- to child: Sequences |
| [1..*] | I_BillOfOperationsSequence | _BillOfOperationsSequence | $projection.BillOfOperationsType = _BillOfOperationsSequence.BillOfOperationsType and $projection.BillOfOperationsGroup = _BillOfOperationsSequence.BillOfOperationsGroup and $projection.BillOfOperationsVariant = _BillOfOperationsSequence.BillOfOperationsVariant -- to child: Material to BOO assignment |
| [1..*] | I_BOOMaterialAssignment | _BOOMaterialAssignment | $projection.BillOfOperationsType = _BOOMaterialAssignment.BillOfOperationsType and $projection.BillOfOperationsGroup = _BOOMaterialAssignment.BillOfOperationsGroup and $projection.BillOfOperationsVariant = _BOOMaterialAssignment.BillOfOperationsVariant |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPBILLOFOPER | view | |
| ObjectModel.compositionRoot | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | BillOfOperationsVariant | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Bill of Operations | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Metadata.allowExtensions | true | view | |
| AbapCatalog.preserveKey | true | view |
Fields (28)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BillOfOperationsType | plkz | plnty | |
| KEY | BillOfOperationsGroup | plkz | plnnr | |
| KEY | BillOfOperationsVariant | plkz | plnal | |
| BillOfOperationsVersionType | plkz | subtype | ||
| BillOfOperationsSubtype | plkz | subtype | ||
| LastUsageDate | plkz | abdat | ||
| NumberOfUsages | plkz | abanz | ||
| HasChangeNumber | plkz | flg_ecm | ||
| HasParameterEffectivity | plkz | flg_ecm_par | ||
| aedatasLastChangeDate | ||||
| LastChangeTime | plkz | aeuzeit | ||
| LastChangedByUser | ||||
| IsMarkedForDeletion | plkz | delkz | ||
| BillOfOperationsVariantDesc | plkz | altext | ||
| RoutingIsReworkRouting | plkz | rework | ||
| ProdnProcgIsFlexible | plkz | relaxed | ||
| BillOfOperationIsExecutedInMES | plkz | execution_in_me | ||
| BillOfOperationsIsTrnsfdToERP | plkz | erp_integration | ||
| ShopFloorRtgTemplateCategory | plkz | reference_template_category | ||
| ShopFloorRoutingTemplateType | plkz | reference_template_type | ||
| ShopFloorRtgTemplateSubType | plkz | reference_template_subtype | ||
| ShopFloorRoutingTemplateOwner | plkz | reference_template_owner | ||
| _BOOMaterialAssignment | _BOOMaterialAssignment | |||
| _BillOfOperationsChangeState | _BillOfOperationsChangeState | |||
| _BillOfOperationsGroup | _BillOfOperationsGroup | |||
| _BillOfOperationsSequence | _BillOfOperationsSequence | |||
| _BillOfOperationsType | _BillOfOperationsType | |||
| _BillOfOperationsVersionType | _BillOfOperationsVersionType |
@AbapCatalog.sqlViewName: 'IPPBILLOFOPER'
@ObjectModel.compositionRoot: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@Analytics: {dataCategory: #DIMENSION}
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'BillOfOperationsVariant'
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Bill of Operations'
@ObjectModel.usageType: { serviceQuality: #B, sizeCategory: #M, dataClass: #MASTER }
@Metadata.allowExtensions: true
@AbapCatalog.preserveKey:true
define view I_BillOfOperations
as select from plkz
association [1..1] to I_BillOfOperationsType as _BillOfOperationsType on $projection.BillOfOperationsType = _BillOfOperationsType.BillOfOperationsType
association [0..1] to I_BillOfOperationsVersionType as _BillOfOperationsVersionType on $projection.BillOfOperationsVersionType = _BillOfOperationsVersionType.BillOfOperationsVersionType
association [1..1] to I_BillOfOperationsGroup as _BillOfOperationsGroup on $projection.BillOfOperationsType = _BillOfOperationsGroup.BillOfOperationsType
and $projection.BillOfOperationsGroup = _BillOfOperationsGroup.BillOfOperationsGroup
-- to child: Change State of Root
association [1..*] to I_BillOfOperationsChangeState as _BillOfOperationsChangeState on $projection.BillOfOperationsType = _BillOfOperationsChangeState.BillOfOperationsType
and $projection.BillOfOperationsGroup = _BillOfOperationsChangeState.BillOfOperationsGroup
and $projection.BillOfOperationsVariant = _BillOfOperationsChangeState.BillOfOperationsVariant
-- to child: Sequences
association [1..*] to I_BillOfOperationsSequence as _BillOfOperationsSequence on $projection.BillOfOperationsType = _BillOfOperationsSequence.BillOfOperationsType
and $projection.BillOfOperationsGroup = _BillOfOperationsSequence.BillOfOperationsGroup
and $projection.BillOfOperationsVariant = _BillOfOperationsSequence.BillOfOperationsVariant
-- to child: Material to BOO assignment
association [1..*] to I_BOOMaterialAssignment as _BOOMaterialAssignment on $projection.BillOfOperationsType = _BOOMaterialAssignment.BillOfOperationsType
and $projection.BillOfOperationsGroup = _BOOMaterialAssignment.BillOfOperationsGroup
and $projection.BillOfOperationsVariant = _BOOMaterialAssignment.BillOfOperationsVariant
{
@ObjectModel.foreignKey.association: '_BillOfOperationsType'
key plkz.plnty as BillOfOperationsType,
@ObjectModel.foreignKey.association: '_BillOfOperationsGroup'
key plkz.plnnr as BillOfOperationsGroup,
key plkz.plnal as BillOfOperationsVariant,
@ObjectModel.foreignKey.association: '_BillOfOperationsVersionType'
plkz.subtype as BillOfOperationsVersionType,
plkz.subtype as BillOfOperationsSubtype, //kept for compatibility reasons
plkz.abdat as LastUsageDate,
plkz.abanz as NumberOfUsages,
plkz.flg_ecm as HasChangeNumber,
plkz.flg_ecm_par as HasParameterEffectivity,
-- Administrative Data
@Semantics.systemDate.lastChangedAt: true
plkz.aedat as LastChangeDate,
plkz.aeuzeit as LastChangeTime,
@Semantics.user.lastChangedBy: true
cast(plkz.aenam as vdm_lastchangedbyuserid preserving type) as LastChangedByUser,
plkz.delkz as IsMarkedForDeletion,
plkz.altext as BillOfOperationsVariantDesc,
plkz.rework as RoutingIsReworkRouting,
plkz.relaxed as ProdnProcgIsFlexible,
plkz.execution_in_me as BillOfOperationIsExecutedInMES,
plkz.erp_integration as BillOfOperationsIsTrnsfdToERP,
plkz.reference_template_category as ShopFloorRtgTemplateCategory,
plkz.reference_template_type as ShopFloorRoutingTemplateType,
plkz.reference_template_subtype as ShopFloorRtgTemplateSubType,
plkz.reference_template_owner as ShopFloorRoutingTemplateOwner,
// **************************** Associations *****************************
_BOOMaterialAssignment,
_BillOfOperationsChangeState,
_BillOfOperationsGroup,
_BillOfOperationsSequence,
_BillOfOperationsType,
_BillOfOperationsVersionType
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"PLKZ"
],
"ASSOCIATED":
[
"I_BILLOFOPERATIONSCHANGESTATE",
"I_BILLOFOPERATIONSGROUP",
"I_BILLOFOPERATIONSSEQUENCE",
"I_BILLOFOPERATIONSTYPE",
"I_BILLOFOPERATIONSVERSIONTYPE",
"I_BOOMATERIALASSIGNMENT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA