I_CPDPRProcessingStatusText
Purchase Requisition Processing Status Text
I_CPDPRProcessingStatusText is a Basic CDS View that provides data about "Purchase Requisition Processing Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields PurReqnReleaseStatus, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_CPDPRProcessingStatus | _PurReqnReleaseStatus | $projection.PurReqnReleaseStatus = _PurReqnReleaseStatus.PurReqnReleaseStatus |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICPDPRSTATUSTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Purchase Requisition Processing Status Text | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | PurReqnReleaseStatus | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.buffering.status | #SWITCHED_OFF | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurReqnReleaseStatus | domvalue_l | ||
| KEY | Language | |||
| PurchasingDocumentStatusName | ddtext | |||
| _PurReqnReleaseStatus | _PurReqnReleaseStatus | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'ICPDPRSTATUSTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Purchase Requisition Processing Status Text'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #L
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'PurReqnReleaseStatus'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AbapCatalog.buffering.status: #SWITCHED_OFF
define view I_CPDPRProcessingStatusText as select from dd07t
association [1..1] to I_CPDPRProcessingStatus as _PurReqnReleaseStatus on $projection.PurReqnReleaseStatus = _PurReqnReleaseStatus.PurReqnReleaseStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key domvalue_l as PurReqnReleaseStatus,
@Semantics.language: true
key cast( ddlanguage as spras) as Language,
@Semantics.text: true
// ddtext as PurReqnReleaseStatusName,
ddtext as PurchasingDocumentStatusName,
_PurReqnReleaseStatus,
_Language
}
where
domname = 'BANPR'
and domvalue_l <> ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_CPDPRPROCESSINGSTATUS",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"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