I_ProdnOrdOpBySemKeyStdVH
Production Order Operation
I_ProdnOrdOpBySemKeyStdVH is a Composite CDS View that provides data about "Production Order Operation" in SAP S/4HANA. It reads from 1 data source (I_MfgOrdOpBySemanticKeyStdVH) and exposes 13 fields with key fields ProductionOrder, ProductionOrderSequence, ProductionOrderOperation.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MfgOrdOpBySemanticKeyStdVH | I_MfgOrdOpBySemanticKeyStdVH | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRNORDOPBSK__VH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | ProductionOrderOperation | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Production Order Operation | view |
Fields (13)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProductionOrder | ManufacturingOrder | ||
| KEY | ProductionOrderSequence | ManufacturingOrderSequence | ||
| KEY | ProductionOrderOperation | |||
| OrderDescription | ManufacturingOrderText | |||
| OperationText | MfgOrderOperationText | |||
| OrderCategory | ManufacturingOrderCategory | |||
| OrderType | ManufacturingOrderType | |||
| ProductionPlant | ProductionPlant | |||
| OrderInternalID | OrderInternalID | |||
| OrderOperationInternalID | OrderOperationInternalID | |||
| Material | Material | |||
| _MfgOrder | _MfgOrder | |||
| _MfgOrderSequence | _MfgOrderSequence |
@AbapCatalog.sqlViewName: 'IPRNORDOPBSK__VH'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #COMPOSITE
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'ProductionOrderOperation'
@ObjectModel.supportedCapabilities: [#VALUE_HELP_PROVIDER, #SEARCHABLE_ENTITY]
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@Consumption.ranked: true
@EndUserText.label: 'Production Order Operation'
define view I_ProdnOrdOpBySemKeyStdVH as select from I_MfgOrdOpBySemanticKeyStdVH {
@ObjectModel.text.element: ['OrderDescription']
@ObjectModel.foreignKey.association: '_MfgOrder'
@Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.9}
key ManufacturingOrder as ProductionOrder,
@ObjectModel.foreignKey.association: '_MfgOrderSequence'
@Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
key ManufacturingOrderSequence as ProductionOrderSequence,
@ObjectModel.text.element: ['OperationText']
@Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.9}
key cast(ManufacturingOrderOperation as vdm_vornr preserving type) as ProductionOrderOperation,
@Semantics.text: true
ManufacturingOrderText as OrderDescription,
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@Search.fuzzinessThreshold: 0.80
@Semantics.text: true
MfgOrderOperationText as OperationText,
@Consumption.hidden: true
ManufacturingOrderCategory as OrderCategory,
@Consumption.hidden: true
ManufacturingOrderType as OrderType,
@Consumption.hidden: true
ProductionPlant,
@Consumption.hidden: true
OrderInternalID,
@Consumption.hidden: true
OrderOperationInternalID,
@Consumption.hidden: true
Material,
@Consumption.hidden: true
_MfgOrder,
@Consumption.hidden: true
_MfgOrderSequence
}
where ManufacturingOrderCategory = '10'; // Prodn Order Operations only
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