Arun_Po_Ralloc
Requirement Allocated Qty of STO/RPO
Arun_Po_Ralloc is a CDS View that provides data about "Requirement Allocated Qty of STO/RPO" in SAP S/4HANA. It reads from 1 data source (arun_bdbs) and exposes 4 fields with key fields mandt, purchdoc_num.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| arun_bdbs | arun_bdbs | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ARUN_V_PO_RALLOC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| EndUserText.label | Requirement Allocated Qty of STO/RPO | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | mandt | mandt | ||
| KEY | purchdoc_num | purchdoc_num | ||
| req_ind | req_ind | |||
| alloc_qty |
@AbapCatalog.sqlViewName: 'ARUN_V_PO_RALLOC'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass:#TRANSACTIONAL
@EndUserText.label: 'Requirement Allocated Qty of STO/RPO'
define view Arun_Po_Ralloc
as select from arun_bdbs
{
key mandt,
key purchdoc_num,
key purchdoc_item,
key requested_date,
key material_avail_date,
req_ind,
sum(alloc_qty) as alloc_qty
}
where arun_mode = '1'
group by
mandt,
purchdoc_num,
purchdoc_item,
requested_date,
material_avail_date,
req_ind
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ARUN_BDBS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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