I_PCPrptyProcgStsT
Description of Processing Status
I_PCPrptyProcgStsT is a Basic CDS View that provides data about "Description of Processing Status" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | PropertyProcgStsText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Description of Processing Status | view | |
| AbapCatalog.sqlViewName | IPCPRPPROCSTATT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.representativeKey | PCPrptyProcgSts | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| ddtextasPCPrptyProcgStsText | ||||
| _Language | _Language |
--Label of view
@EndUserText.label: 'Description of Processing Status'
@AbapCatalog:
{
-- SQL view name (16 characters)
sqlViewName: 'IPCPRPPROCSTATT',
--If it's true, the filter conditions are compared and, if they match, the associated join expression is evaluated only once
compiler.compareFilter: true,
preserveKey:true
}
--Access Control: Authorizations Checks
@AccessControl:
{
authorizationCheck: #NOT_REQUIRED
}
--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE
--VDM view type
@VDM.viewType: #BASIC
@ObjectModel:
{
--data category
dataCategory: #TEXT,
--Performance Annotations
usageType:
{
dataClass: #META,
sizeCategory: #S,
serviceQuality: #B
},
--Representative Key
representativeKey: 'PCPrptyProcgSts'
}
define view I_PCPrptyProcgStsT
--Select data from domain value description table
as select from dd07t as PropertyProcgStsText
--Link to the language
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
--Domain Value of Processing Status
key cast( PropertyProcgStsText.domvalue_l as ehfnd_property_status ) as PCPrptyProcgSts,
--Language
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast(PropertyProcgStsText.ddlanguage as sylangu preserving type ) as Language,
--language-dependent description of domain value
@Semantics.text: true
PropertyProcgStsText.ddtext as PCPrptyProcgStsText,
/* Associations */
_Language
}
where
PropertyProcgStsText.domname = 'EHFND_PROPERTY_STATUS'
and PropertyProcgStsText.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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