I_ALLOCATIONSTATUS
Allocation Status
I_ALLOCATIONSTATUS is a CDS View in S/4HANA. Allocation Status. 4 CDS views read from this table.
CDS Views using this table (4)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_AllocationCycleStatusVH | view | from | CONSUMPTION | Allocation Cycle Status |
| C_AllocationStatusVH | view | from | CONSUMPTION | Allocation Status Value Help |
| P_AllocationSegmentStatusText | view | from | CONSUMPTION | |
| P_AllocationStatusVH | view | from | CONSUMPTION | Allocation Status Value Help |
@AbapCatalog.sqlViewName: 'IALOSTATUS'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Allocation Status'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'AllocationStatus'
@Search.searchable: false
define view I_AllocationStatus as
select from dd07l
association [0..*] to I_AllocationStatusText as _Text on $projection.AllocationStatus = _Text.AllocationStatus
{
//@ObjectModel.text.association: '_Text'
//@Search:{ defaultSearchElement:true, fuzzinessThreshold:0.8, ranking:#HIGH }
key cast( domvalue_l as fco_allocation_status ) as AllocationStatus,
_Text
}
where
dd07l.domname = 'FCO_ALLOCATION_STATUS' and dd07l.as4local = 'A';