Arun_Purchreq_Bdbs
Aggregatation of assigned quantities for purchase requisition in preview mode
Arun_Purchreq_Bdbs is a CDS View that provides data about "Aggregatation of assigned quantities for purchase requisition in preview mode" in SAP S/4HANA. It reads from 1 data source (arun_preview) and exposes 4 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| arun_preview | arun_preview | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ARUN_V_PR_BDBS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| EndUserText.label | Aggregatation of assigned quantities for purchase requisition in preview mode | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| material | material | |||
| plant | plant | |||
| purchord_num | purchord_num | |||
| alloc_qty |
@AbapCatalog.sqlViewName: 'ARUN_V_PR_BDBS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass:#TRANSACTIONAL
@EndUserText.label: 'Aggregatation of assigned quantities for purchase requisition in preview mode'
define view Arun_Purchreq_Bdbs
as select from arun_preview {
material,
plant,
purchord_num,
purchord_item,
sum(alloc_qty) as alloc_qty,
material_baseunit
}
where arun_preview.stock_source = 'A' and
arun_preview.arun_mode = '2'
group by material, plant, purchord_num,purchord_item,material_baseunit
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ARUN_PREVIEW"
],
"ASSOCIATED":
[],
"BASE":
[],
"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