I_CmplRqRsltProcgStsTxt
CRR Processing Status Text
I_CmplRqRsltProcgStsTxt is a Basic CDS View that provides data about "CRR Processing Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, CmplRqRsltProcessingStatus. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICRRPSTSTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | CRR Processing Status Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CmplRqRsltProcessingStatus | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| Search.searchable | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | CmplRqRsltProcessingStatus | |||
| DomainValue | domvalue_l | |||
| ProcessingStatusText | ddtext | |||
| _Language | _Language | |||
| _ProcessingStatus | _ProcessingStatus |
@AbapCatalog.sqlViewName: 'ICRRPSTSTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@EndUserText.label: 'CRR Processing Status Text'
@Metadata.ignorePropagatedAnnotations: true
-- CDS View Classification: 1. No data access restriction required
-- Reason: Text View for Domain Fix values
@AccessControl.authorizationCheck: #NOT_REQUIRED
--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel:
{
--Data category
/*
#TEXT: the annotated entity represents texts
#HIERARCHY: the entity represents the hierarchy-related data
*/
dataCategory: #TEXT,
representativeKey: 'CmplRqRsltProcessingStatus',
--Performance Annotations
usageType:
{
dataClass: #CUSTOMIZING,
sizeCategory: #S,
serviceQuality: #C
}
}
@Search.searchable: true
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_CmplRqRsltProcgStsTxt
as select from dd07t
association to parent I_CmplRqRsltProcgStsVH as _ProcessingStatus on $projection.CmplRqRsltProcessingStatus = _ProcessingStatus.CmplRqRsltProcessingStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast(ddlanguage as spras preserving type ) as Language,
@ObjectModel.foreignKey.association: '_ProcessingStatus'
@ObjectModel.text.element:['ProcessingStatusText']
key cast(domvalue_l as ehfnd_crr_proc_status ) as CmplRqRsltProcessingStatus,
/* Content */
@Consumption.hidden: true
domvalue_l as DomainValue,
@Semantics.text: true
@Search:
{
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
ddtext as ProcessingStatusText,
/* Associations */
_Language,
_ProcessingStatus
}
where
domname = 'EHFND_CRR_PROCSTAT'
and as4local = 'A'
and as4vers = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_CMPLRQRSLTPROCGSTSVH",
"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