C_OrderMasterVH
Order Master Value Help
C_OrderMasterVH is a Consumption CDS View that provides data about "Order Master Value Help" in SAP S/4HANA. It reads from 1 data source (I_Order) and exposes 4 fields with key field OrderID. It is exposed through 1 OData service (UI_FCO_MANAGE_ALLOCATION). Part of development package ODATA_MM_PUR_POITEMACCT_MNTR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Order | I_Order | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CORDERM_VH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| EndUserText.label | Order Master Value Help | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.lifecycle.contract.type | #NONE | view | |
| Consumption.ranked | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_FCO_MANAGE_ALLOCATION | UI_FCOUA_MANAGE_ALLOCATION | V2 | C1 | NOT_RELEASED |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OrderID | OrderID | ||
| OrderDescription | OrderDescription | |||
| OrderType | OrderType | |||
| ControllingArea | ControllingArea |
@AbapCatalog.sqlViewName: 'CORDERM_VH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #MANDATORY
@AbapCatalog.preserveKey: true
@VDM.viewType: #CONSUMPTION
@ObjectModel.dataCategory: #VALUE_HELP
@Search.searchable: true
@ObjectModel.semanticKey: [ 'OrderID']
@ObjectModel.representativeKey: [ 'OrderID' ]
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@EndUserText.label: 'Order Master Value Help'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.lifecycle.contract.type:#NONE
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations: true
define view C_OrderMasterVH
as select from I_Order
{
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
key OrderID,
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.7 }
OrderDescription,
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.7 }
OrderType,
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.7 }
ControllingArea
}
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