C_MSPWStorageLocation

DDL: C_MSPWSTORAGELOCATION SQL: CMSPWSTORLOC Type: view CONSUMPTION Package: RFM_STORE_MOVE_PROD_WORKLIST

MPW: Storage Location

C_MSPWStorageLocation is a Consumption CDS View that provides data about "MPW: Storage Location" in SAP S/4HANA. It reads from 1 data source (I_StorageLocation) and exposes 3 fields with key fields Store, StorageLocation. It is exposed through 1 OData service (UI_RFM_STORE_MOVEPRODWL). Part of development package RFM_STORE_MOVE_PROD_WORKLIST.

Data Sources (1)

SourceAliasJoin Type
I_StorageLocation I_StorageLocation from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CMSPWSTORLOC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

OData Services (1)

ServiceBindingVersionContractRelease
UI_RFM_STORE_MOVEPRODWL UI_RFM_STORE_MOVEPRODWL V2 C1 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Store Plant
KEY StorageLocation StorageLocation
StorageLocationName StorageLocationName
@AbapCatalog.sqlViewName: 'CMSPWSTORLOC'

@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #CONSUMPTION
@ObjectModel: {
    usageType: {
        serviceQuality: #B,
        sizeCategory: #S,
        dataClass: #CUSTOMIZING
    }
}
define view C_MSPWStorageLocation
  as select from I_StorageLocation
{
      @ObjectModel.foreignKey.association: null
  key Plant as Store,
  key StorageLocation,

      StorageLocationName
}