I_ARunPrioritySlsOrdBasic
Base View for ARun Priority in SOs
I_ARunPrioritySlsOrdBasic is a Basic CDS View that provides data about "Base View for ARun Priority in SOs" in SAP S/4HANA. It reads from 2 data sources (vbak, vbap) and exposes 6 fields with key fields RequirementDocumentNumber, RequirementDocumentItem.
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IARNPRIOSOBSC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| EndUserText.label | Base View for ARun Priority in SOs | view |
@AbapCatalog.sqlViewName: 'IARNPRIOSOBSC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel: {
compositionRoot: true,
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #X,
sizeCategory: #XXL
}
}
@EndUserText.label: 'Base View for ARun Priority in SOs'
define view I_ARunPrioritySlsOrdBasic as
select from vbap as Item
inner join vbak as Head on Item.vbeln = Head.vbeln
{
key Item.vbeln as RequirementDocumentNumber,
key Item.posnr as RequirementDocumentItem,
key case Head.vbtyp when 'C' then 'VC' when 'G' then 'VG' when 'I' then 'VI'
else '' end as RequirementType,
Item.assignment_priority as ARunPriorityValue,
Item.arun_group_prio as ARunDemandGroupPriority,
Item.matnr as Material,
Item.werks as Plant
}
where
Head.vbtyp = 'C'
or Head.vbtyp = 'G'
or Head.vbtyp = 'I'
and Item.sobkz = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"VBAK",
"VBAP"
],
"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