I_GRIRProcessPriorityText
GR/IR Clearing Process Priority Text
I_GRIRProcessPriorityText is a Basic CDS View that provides data about "GR/IR Clearing Process Priority Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields GRIRClearingProcessPriority, 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_GRIRProcessPriority | _GRIRProcessPriority | $projection.GRIRClearingProcessPriority = _GRIRProcessPriority.GRIRClearingProcessPriority |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.sqlViewName | IFIGRIRPRIOTXT | view | |
| EndUserText.label | GR/IR Clearing Process Priority Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | GRIRClearingProcessPriority | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | GRIRClearingProcessPriority | |||
| KEY | Language | |||
| GRIRClrgProcessPriorityName | ||||
| _GRIRProcessPriority | _GRIRProcessPriority | |||
| _Language | _Language |
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.sqlViewName: 'IFIGRIRPRIOTXT'
@EndUserText.label: 'GR/IR Clearing Process Priority Text'
@ObjectModel.dataCategory:#TEXT //marks view as text view
@ObjectModel.representativeKey: 'GRIRClearingProcessPriority' //view contains texts for this key field
@VDM.viewType:#BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
}
define view I_GRIRProcessPriorityText as select from dd07t
association [1..1] to I_GRIRProcessPriority as _GRIRProcessPriority on $projection.GRIRClearingProcessPriority = _GRIRProcessPriority.GRIRClearingProcessPriority
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_GRIRProcessPriority'
key cast( domvalue_l as fis_grir_priority ) as GRIRClearingProcessPriority,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(ddlanguage as spras) as Language,
@Semantics.text: true //text field
cast(ddtext as fis_grir_priority_name) as GRIRClrgProcessPriorityName,
//ddtext as GRIRClrgProcessPriorityName,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT] //compositional relationship to carrier view
_GRIRProcessPriority,
_Language
}
where domname = 'FIS_GRIR_PRIORITY' 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