ARUN_COM_RALLOC
Subcontrg PO/Prodn. Ord allocated qty
ARUN_COM_RALLOC is a CDS View in S/4HANA. Subcontrg PO/Prodn. Ord allocated qty. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| ARUN_PROD_REQMT | view | left_outer | Production order components | |
| Arun_Spo_Reqmt | view | left_outer | Subcontracting PO Requirement |
@AbapCatalog.sqlViewName: 'V_ARUN_COM_ALLOC'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass:#TRANSACTIONAL
@EndUserText.label: 'Subcontrg PO/Prodn. Ord allocated qty'
define view Arun_Com_Ralloc
as select from arun_bdbs
{
key mandt,
key reserv_num,
key reserv_item,
req_ind as bdart,
sum(alloc_qty) as alloc_qty
}
group by
mandt,
reserv_num,
reserv_item,
req_ind