I_PPM_ProjProcessingStsTxt
Project Processing Status Texts
I_PPM_ProjProcessingStsTxt is a Basic CDS View that provides data about "Project Processing Status Texts" in SAP S/4HANA. It reads from 1 data source (P_PPM_DomainValueText) and exposes 3 fields with key fields LanguageCode, ProcessingStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_PPM_DomainValueText | text | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPMPROPRCSTSTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ProcessingStatus | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view | |
| EndUserText.label | Project Processing Status Texts | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LanguageCode | P_PPM_DomainValueText | ddlanguage | |
| KEY | ProcessingStatus | P_PPM_DomainValueText | domvalue_l | |
| ProcessingStatusText | P_PPM_DomainValueText | ddtext |
@AbapCatalog.sqlViewName: 'IPPMPROPRCSTSTXT'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'ProcessingStatus',
usageType: {
serviceQuality: #A,
dataClass: #MASTER,
sizeCategory: #S
}
}
@Search.searchable: true
@EndUserText.label: 'Project Processing Status Texts'
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_PPM_ProjProcessingStsTxt as select from P_PPM_DomainValueText as text {
@Semantics.language: true
@UI.hidden: true
key text.ddlanguage as LanguageCode,
@UI.hidden: true
@ObjectModel.text.element: 'ProcessingStatusText'
key text.domvalue_l as ProcessingStatus,
@Semantics.text: true
@Search.defaultSearchElement: true
text.ddtext as ProcessingStatusText
} where ( domname = 'DPR_PROC_STATUS' )
and ( as4local = 'A' )
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_PPM_DOMAINVALUETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/
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