I_GRIRProcessPriority

DDL: I_GRIRPROCESSPRIORITY SQL: IFIGRIRPRIORITY Type: view BASIC

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.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_GRIRProcessPriorityText _Text $projection.GRIRClearingProcessPriority = _Text.GRIRClearingProcessPriority

Annotations (15)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IFIGRIRPRIORITY view
EndUserText.label GR/IR Clearing Process Priority view
Analytics.dataCategory #DIMENSION view
ObjectModel.compositionRoot true 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 (2)

KeyFieldSource TableSource FieldDescription
KEY GRIRClearingProcessPriority
_Text _Text
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.sqlViewName: 'IFIGRIRPRIORITY'
@EndUserText.label: 'GR/IR Clearing Process Priority'
@Analytics: { 
  dataCategory: #DIMENSION
//  dataExtraction.enabled: true 

}
@ObjectModel.compositionRoot: true
@ObjectModel.representativeKey: 'GRIRClearingProcessPriority'
@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_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'; 

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_GRIRPROCESSPRIORITYTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/