I_ProductionOrderStdVH
Production Order
I_ProductionOrderStdVH is a Composite CDS View that provides data about "Production Order" in SAP S/4HANA. It reads from 1 data source (I_MfgOrderStdVH) and exposes 5 fields with key field ProductionOrder.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MfgOrderStdVH | I_MfgOrderStdVH | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRNO__VH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | ProductionOrder | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Production Order | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProductionOrder | ManufacturingOrder | ||
| OrderDescription | ManufacturingOrderText | |||
| OrderCategory | ManufacturingOrderCategory | |||
| OrderType | ManufacturingOrderType | |||
| ProductionPlant | ProductionPlant |
@AbapCatalog.sqlViewName: 'IPRNO__VH'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #COMPOSITE
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'ProductionOrder'
@ObjectModel.supportedCapabilities: [#VALUE_HELP_PROVIDER, #SEARCHABLE_ENTITY]
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Production Order'
define view I_ProductionOrderStdVH as select from I_MfgOrderStdVH {
@ObjectModel.text.element: ['OrderDescription']
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
key ManufacturingOrder as ProductionOrder,
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@Search.fuzzinessThreshold: 0.80
@Semantics.text: true
ManufacturingOrderText as OrderDescription,
@Consumption.hidden: true
ManufacturingOrderCategory as OrderCategory,
@Consumption.hidden: true
ManufacturingOrderType as OrderType,
@Consumption.hidden: true
ProductionPlant
}
where ManufacturingOrderCategory = '10'; // Prodn orders only
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MFGORDERSTDVH"
],
"ASSOCIATED":
[],
"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