I_ARunPriority
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)
| Source | Alias | Join Type |
|---|---|---|
| I_SupDmndMaterialPlant | _MatPlant | inner |
| I_ARunPriorityBasic | Item | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
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