C_RealTimeOrderKeyStatusVH
Order Key Status
C_RealTimeOrderKeyStatusVH is a Consumption CDS View that provides data about "Order Key Status" in SAP S/4HANA. It reads from 1 data source (I_SystemStatus) and exposes 2 fields with key field SystemStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SystemStatus | I_SystemStatus | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CRTORDKSTVH | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Order Key Status | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SystemStatus | SystemStatus | ||
| SystemStatusName |
@AbapCatalog.sqlViewName: 'CRTORDKSTVH'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Search.searchable: true
@VDM.viewType: #CONSUMPTION
@ObjectModel: {
dataCategory: #VALUE_HELP,
usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #S
}
}
@EndUserText.label: 'Order Key Status'
define view C_RealTimeOrderKeyStatusVH
as select from I_SystemStatus
{
@ObjectModel.text.element: ['SystemStatusName']
key SystemStatus,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
@Semantics.text: true
_SystemStatusText[1:Language = $session.system_language].SystemStatusName
}
where
SystemStatus = 'I0002' //Released
or SystemStatus = 'I0009' //Confirmed
or SystemStatus = 'I0012' //Delivered
or SystemStatus = 'I0042' //Partially Released
or SystemStatus = 'I0045' //Technicaly Completed
or SystemStatus = 'I0046' //Closed
or SystemStatus = 'I0076' //Deletion Flag
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SYSTEMSTATUS",
"I_SYSTEMSTATUSTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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