I_EntProjProcgStatusActionText
Texts for applicable actions on processing statuses
I_EntProjProcgStatusActionText is a Basic CDS View that provides data about "Texts for applicable actions on processing statuses" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, ProcessingStatus. It has 2 associations to related views. Part of development package VDM_PPM_OBJECTS_MASS_CHANGE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_EntProjProcgStatusAction | _EntProjProcgStatusAction | $projection.ProcessingStatus = _EntProjProcgStatusAction.ProcessingStatus |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IENTPROJPROCSTAT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | ProcessingStatus | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Texts for applicable actions on processing statuses | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | ProcessingStatus | |||
| ProcessingStatusText | Processing Status Description | |||
| _EntProjProcgStatusAction | _EntProjProcgStatusAction | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IENTPROJPROCSTAT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:
{
representativeKey: 'ProcessingStatus',
resultSet.sizeCategory: #XS,
usageType:
{
serviceQuality: #A,
dataClass: #MASTER,
sizeCategory: #S
}
}
@VDM.viewType: #BASIC
@EndUserText.label: 'Texts for applicable actions on processing statuses'
define view I_EntProjProcgStatusActionText
as select from dd07t
association [0..1] to I_EntProjProcgStatusAction as _EntProjProcgStatusAction on $projection.ProcessingStatus = _EntProjProcgStatusAction.ProcessingStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language
key cast( ddlanguage as spras ) as Language,
// @ObjectModel.foreignKey.association: '_ProcessingStatus'
key cast ( substring( domvalue_l, 1, 2 ) as /s4ppm/tv_proc_status ) as ProcessingStatus,
@Semantics.text
@EndUserText.label: 'Processing Status Description'
cast ( ddtext as /s4ppm/tv_proc_status_text ) as ProcessingStatusText,
_EntProjProcgStatusAction,
_Language
}
where
domname = '/S4PPM/PROC_STATUS_ACTION'
and 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