I_SupDmndOrderStatus
Order Status Value Help
I_SupDmndOrderStatus is a Basic CDS View that provides data about "Order Status Value Help" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 2 fields with key field SupAssgmtOrdStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDMNDSTAT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | SupAssgmtOrdStatus | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| EndUserText.label | Order Status Value Help | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SupAssgmtOrdStatus | domvalue_l | ||
| SupAssgmtOrdStatusName | ddtext |
@AbapCatalog.sqlViewName: 'IDMNDSTAT'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'SupAssgmtOrdStatus'
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'Order Status Value Help'
define view I_SupDmndOrderStatus
as select from dd07v
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
key domvalue_l as SupAssgmtOrdStatus,
@Semantics.text: true
ddtext as SupAssgmtOrdStatusName
}
where
domname = 'ARUN_SDO_DEMAND_STATUS'
and ddlanguage = $session.system_language
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