I_ProcOrdOpStatusText
Status of Process Order Operation - Text
I_ProcOrdOpStatusText is a Basic CDS View that provides data about "Status of Process Order Operation - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields ProcOrdOpStatusCode, Language. Part of development package VDM_PP_PROC_ORD_MNG.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.dataCategory | #TEXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Status of Process Order Operation - Text | view | |
| ObjectModel.representativeKey | ProcOrdOpStatusCode | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProcOrdOpStatusCode | |||
| KEY | Language | ddlanguage | ||
| OrderStatusText | ddtext |
//@AbapCatalog.sqlViewName: ''
//@AbapCatalog.compiler.compareFilter: true
//@AbapCatalog.preserveKey: true
@ObjectModel.dataCategory: #TEXT
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Status of Process Order Operation - Text'
//@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'ProcOrdOpStatusCode'
@ObjectModel.usageType: { dataClass: #META, serviceQuality: #B, sizeCategory: #S}
@VDM.viewType: #BASIC
define view entity I_ProcOrdOpStatusText
as select from dd07t
{
key cast( substring( domvalue_l, 1, 2 ) as procordopstatuscode) as ProcOrdOpStatusCode,
@Semantics.language: true
key ddlanguage as Language,
@Semantics.text: true
ddtext as OrderStatusText
}
where
domname = 'PROCORDOPSTATUSCODE'
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