I_ProjectAssignedOrderVH
Maintenance and Production Orders
I_ProjectAssignedOrderVH is a Composite CDS View that provides data about "Maintenance and Production Orders" in SAP S/4HANA. It reads from 2 data sources (I_MaintenanceOrder, I_ManufacturingOrder) and exposes 2 fields with key field OrderID.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_MaintenanceOrder | I_MaintenanceOrder | from |
| I_ManufacturingOrder | I_ManufacturingOrder | union |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPROJASSGDORDVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | OrderID | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Maintenance and Production Orders | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OrderID | MaintenanceOrder | ||
| OrderDescription | ManufacturingOrderText |
@AbapCatalog.sqlViewName: 'IPROJASSGDORDVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@VDM.viewType: #COMPOSITE
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'OrderID'
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@AccessControl.authorizationCheck: #MANDATORY
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@Consumption.ranked:true
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Maintenance and Production Orders'
define view I_ProjectAssignedOrderVH
as select from I_MaintenanceOrder
{
@Search: { defaultSearchElement: true, ranking: #HIGH }
@ObjectModel.text.element: ['OrderDescription']
key MaintenanceOrder as OrderID,
@Search: { defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.8}
MaintenanceOrderDesc as OrderDescription
}
union select from I_ManufacturingOrder
{
@Search: { defaultSearchElement: true, ranking: #HIGH }
@ObjectModel.text.element: ['OrderDescription']
key ManufacturingOrder as OrderID,
@Search: { defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.8}
ManufacturingOrderText as OrderDescription
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MAINTENANCEORDER",
"I_MANUFACTURINGORDER"
],
"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