I_STORAGELOCATIONLASTRFIDCOUNT
Last RFID Count for Storage Location
I_STORAGELOCATIONLASTRFIDCOUNT is a CDS View in S/4HANA. Last RFID Count for Storage Location. It contains 1 fields.
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| LastRFIDCountSubmissionDteTme | LastRFIDCountSubmissionDteTme | 1 |
@AbapCatalog.sqlViewName: 'ISTRGELCTNLSTCNT'
@EndUserText.label: 'Last RFID Count for Storage Location'
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@ObjectModel: {
representativeKey: 'StorageLocation',
usageType.serviceQuality: #C,
usageType.sizeCategory: #M,
usageType.dataClass: #MIXED
}
define view I_StorageLocationLastRFIDCount
as select from I_StorageLocation
association [0..*] to I_StoreProductRFIDCount as _StoreProductRFIDCount on $projection.Store = _StoreProductRFIDCount.Store
and $projection.StorageLocation = _StoreProductRFIDCount.StorageLocation
association [0..*] to I_RetailStoreApplicationStore as _RetailStoreApplicationStore on $projection.Store = _RetailStoreApplicationStore.Store
and _RetailStoreApplicationStore.RetailStoreApplicationCategory = '2'
{
key Plant as Store,
key StorageLocation,
cast(max(_StoreProductRFIDCount[ StoreProductRFIDCntProcgStatus = '02' ].SubmissionDateTime) as timestamp) as LastRFIDCountSubmissionDteTme,
_RetailStoreApplicationStore
}
group by
Plant,
StorageLocation
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_STORAGELOCATION",
"I_STOREPRODUCTRFIDCOUNT"
],
"ASSOCIATED":
[
"I_RETAILSTOREAPPLICATIONSTORE",
"I_STOREPRODUCTRFIDCOUNT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/