I_WarehouseExecutionStatus

DDL: I_WAREHOUSEEXECUTIONSTATUS SQL: IWRHSEXCSTS Type: view BASIC

Warehouse Execution Status in Delivery Processing

I_WarehouseExecutionStatus is a Basic CDS View that provides data about "Warehouse Execution Status in Delivery Processing" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ReadyForWarehouseExecStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..* ] I_WarehouseExecutionStatusDesc _Text $projection.ReadyForWarehouseExecStatus = _Text.ReadyForWarehouseExecStatus

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IWRHSEXCSTS view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ReadyForWarehouseExecStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
EndUserText.label Warehouse Execution Status in Delivery Processing view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ReadyForWarehouseExecStatus
_Text _Text
@AbapCatalog.sqlViewName: 'IWRHSEXCSTS'
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'ReadyForWarehouseExecStatus'
@ObjectModel.usageType:{
    serviceQuality: #A,
    sizeCategory: #S,
    dataClass: #META
}
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter:true

@VDM.viewType: #BASIC

@EndUserText.label: 'Warehouse Execution Status in Delivery Processing'

define view I_WarehouseExecutionStatus as select from dd07l
    association [0..* ] to I_WarehouseExecutionStatusDesc as _Text on $projection.ReadyForWarehouseExecStatus = _Text.ReadyForWarehouseExecStatus
 {
 @ObjectModel.text.association: '_Text'
 key substring(dd07l.domvalue_l, 1, 1) as ReadyForWarehouseExecStatus,
 
 
 
 //Associations

 _Text
    
}
where (dd07l.domname = 'LE_TM_WHSE_EXEC') and (dd07l.as4local = 'A');
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_WAREHOUSEEXECUTIONSTATUSDESC"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/