C_MSPRStore

DDL: C_MSPRSTORE Type: view_entity CONSUMPTION

C_MSPRStore is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_Site) and exposes 10 fields with key field Store. It has 7 associations to related views. It is exposed through 1 OData service (UI_RFM_STORE_MOVEPRODRFID). It is used in 1 Fiori application: Move Products with RFID.

Data Sources (1)

SourceAliasJoin Type
I_Site I_Site from

Associations (7)

CardinalityTargetAliasCondition
[0..1] I_RetailStoreUserAssignment _RetailStoreUserAssignment $projection.Store = _RetailStoreUserAssignment.Store and _RetailStoreUserAssignment.AssignedUser = $session.user
[0..*] I_RetailStoreApplicationStore _RetailStoreApplicationStore $projection.Store = _RetailStoreApplicationStore.Store and _RetailStoreApplicationStore.RetailStoreApplicationCategory = '2'
[0..*] C_MSPRMovement _Movement _Movement.Store = $projection.Store
[0..1] C_MSPRSettings _Settings
[0..*] C_MSPRStorageLocation _StorageLocation
[1..1] C_MSPRUserDefaultValues _UserDefaultValues
[0..1] C_MSPRAssignedStore _AssignedStore

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey Store view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

OData Services (1)

ServiceBindingVersionContractRelease
UI_RFM_STORE_MOVEPRODRFID UI_RFM_STORE_MOVEPRODRFID V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F3997 Move Products with RFID Transactional The app enables the store associate to move RFID tagged products from one storage location to another in a very fast way.

Move Products with RFID

Business Role: Retail Store Associate

With this feature you can move RFID tagged products from one storage location to another storage location, identify the collected products and adjust the stock immediately in both storage locations. The SAP Fiori app Move Products with RFID simplifies all steps involved in moving products between two storage locations by the use of radio frequency identification (RFID) technology. This enables store associates to move products in a store more efficiently.

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Store Site Plant
StoreName SiteName
AddressID AddressID Ship-to address
FormattedAddress
_Settings _Settings
_StorageLocation _StorageLocation
_RetailStoreApplicationStore _RetailStoreApplicationStore
_Movement _Movement
_UserDefaultValues _UserDefaultValues
_AssignedStore _AssignedStore

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_MSPRStore.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW C_MSPRStore AS
SELECT
  Site AS Store,
  SiteName AS StoreName,
  AddressID,
  cast('' as char200) AS FormattedAddress
FROM I_Site
LEFT OUTER JOIN I_RetailStoreUserAssignment AS _RetailStoreUserAssignment ON Store = _RetailStoreUserAssignment.Store AND _RetailStoreUserAssignment.AssignedUser = $session.user  -- association [0..1]
LEFT OUTER JOIN I_RetailStoreApplicationStore AS _RetailStoreApplicationStore ON Store = _RetailStoreApplicationStore.Store AND _RetailStoreApplicationStore.RetailStoreApplicationCategory = '2'  -- association [0..*]
LEFT OUTER JOIN C_MSPRMovement AS _Movement ON _Movement.Store = Store  -- association [0..*]
LEFT OUTER JOIN C_MSPRSettings AS _Settings ON /* condition not available in parsed metadata */  -- association [0..1]
LEFT OUTER JOIN C_MSPRStorageLocation AS _StorageLocation ON /* condition not available in parsed metadata */  -- association [0..*]
LEFT OUTER JOIN C_MSPRUserDefaultValues AS _UserDefaultValues ON /* condition not available in parsed metadata */  -- association [1..1]
LEFT OUTER JOIN C_MSPRAssignedStore AS _AssignedStore ON /* condition not available in parsed metadata */  -- association [0..1]
;