P_ProcOrdQtyIssueStatusText
Process order quantity issue status text
P_ProcOrdQtyIssueStatusText is a Basic CDS View that provides data about "Process order quantity issue status text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ProcOrdQtyIssueStatusCode, Language. It has 1 association to related views. Part of development package VDM_PP_PROC_ORD_MNG.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | dd07t.ddlanguage = _Language.Language |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view |
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType: {serviceQuality: #A,sizeCategory: #S,dataClass: #MASTER}
@VDM.private: true
@VDM.viewType: #BASIC
define view entity P_ProcOrdQtyIssueStatusText
as select from dd07t
association [0..1] to I_Language as _Language on dd07t.ddlanguage = _Language.Language
{
@ObjectModel.text.element: [ 'ProcOrdQtyIssueStatusText' ]
@UI.textArrangement: #TEXT_ONLY
@EndUserText.label: 'Quantity Status'
key cast ( substring( domvalue_l, 1, 2 ) as pppi_procord_qty_issue_status ) as ProcOrdQtyIssueStatusCode,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key dd07t.ddlanguage as Language,
@Semantics.text: true
dd07t.ddtext as ProcOrdQtyIssueStatusText,
_Language
}
where
dd07t.domname = 'PPPI_PROCORD_QTY_ISSUE_STATUS'
and dd07t.as4local = 'A'
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