I_GRIRProcessPriority
GR/IR Clearing Process Priority
I_GRIRProcessPriority is a Basic CDS View (Dimension) that provides data about "GR/IR Clearing Process Priority" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field GRIRClearingProcessPriority. It has 1 association to related views. Part of development package FINS_FIS_FICO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_GRIRProcessPriorityText | _Text | $projection.GRIRClearingProcessPriority = _Text.GRIRClearingProcessPriority |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| EndUserText.label | GR/IR Clearing Process Priority | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.technicalName | IFIGRIRPRIORITY | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.representativeKey | GRIRClearingProcessPriority | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | GRIRClearingProcessPriority | |||
| _Text | _Text |
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@EndUserText.label: 'GR/IR Clearing Process Priority'
@Analytics: {
dataCategory: #DIMENSION
// dataExtraction.enabled: true
}
@Analytics.technicalName: 'IFIGRIRPRIORITY'
@ObjectModel.compositionRoot: true
@ObjectModel.representativeKey: 'GRIRClearingProcessPriority'
@VDM.viewType:#BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
}
define view entity I_GRIRProcessPriority as select from dd07l
association [0..*] to I_GRIRProcessPriorityText as _Text on $projection.GRIRClearingProcessPriority = _Text.GRIRClearingProcessPriority //association to the text view
{
@ObjectModel.text.association: '_Text' //field relation to text view
key cast( domvalue_l as fis_grir_priority ) as GRIRClearingProcessPriority,
@ObjectModel.association.type: [#TO_COMPOSITION_CHILD] //compositional relationship to text view
_Text //text association in projection list
}
where dd07l.domname = 'FIS_GRIR_PRIORITY' and dd07l.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