ARUN_SO_RALLOC
Requirement Allocated Qty of Sales Order
ARUN_SO_RALLOC is a CDS View in S/4HANA. Requirement Allocated Qty of Sales Order. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| Arun_So_Reqmt | view | left_outer | Sales Order Requirement |
@AbapCatalog.sqlViewName: 'ARUN_V_SO_RALLOC'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass:#TRANSACTIONAL
@EndUserText.label: 'Requirement Allocated Qty of Sales Order'
define view Arun_So_Ralloc
as select from arun_bdbs
{
key mandt ,
key salesdoc_num,
key salesdoc_item,
// key schedule_line,
req_ind,
sum(alloc_qty) as alloc_qty
} where salesdoc_num != ''
group by
mandt,
salesdoc_num,
salesdoc_item,
// schedule_line,
req_ind
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ARUN_BDBS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/