I_ARunPriority

DDL: I_ARUNPRIORITY SQL: IARNPRIORITY Type: view COMPOSITE

Supply Assignment Priority - Basic View

I_ARunPriority is a Composite CDS View that provides data about "Supply Assignment Priority - Basic View" in SAP S/4HANA. It reads from 2 data sources (I_SupDmndMaterialPlant, I_ARunPriorityBasic) and exposes 7 fields with key fields RequirementDocumentNumber, RequirementDocumentItem, RequirementType.

Data Sources (2)

SourceAliasJoin Type
I_SupDmndMaterialPlant _MatPlant inner
I_ARunPriorityBasic Item from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IARNPRIORITY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
ObjectModel.compositionRoot true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
EndUserText.label Supply Assignment Priority - Basic View view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY RequirementDocumentNumber I_ARunPriorityBasic RequirementDocumentNumber
KEY RequirementDocumentItem I_ARunPriorityBasic RequirementDocumentItem
KEY RequirementType RequirementType
ARunPriorityValue I_ARunPriorityBasic ARunPriorityValue
ARunDemandGroupPriority I_ARunPriorityBasic ARunDemandGroupPriority
ARunDmndPrioUpdateIsReqd
ARunDmndGrpPrioUpdateIsReqd
@AbapCatalog.sqlViewName: 'IARNPRIORITY'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@ObjectModel: {
   compositionRoot: true,
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #X,
     sizeCategory:   #XXL
   }
}
@EndUserText.label: 'Supply Assignment Priority - Basic View'
define view I_ARunPriority
  as select from I_ARunPriorityBasic    as Item
    inner join   I_SupDmndMaterialPlant as _MatPlant on  Item.Material = _MatPlant.Material
                                                     and Item.Plant    = _MatPlant.Plant
{
  key  Item.RequirementDocumentNumber,
  key  Item.RequirementDocumentItem,
  key  RequirementType,
       Item.ARunPriorityValue,
       Item.ARunDemandGroupPriority,
       cast( '' as char1) as ARunDmndPrioUpdateIsReqd,        
       cast( '' as char1) as ARunDmndGrpPrioUpdateIsReqd    
} 
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ARUNPRIORITYBASIC",
"I_SUPDMNDMATERIALPLANT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/