C_MSPRMovement

DDL: C_MSPRMOVEMENT Type: view_entity CONSUMPTION

C_MSPRMovement is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_StoreProductRFIDMovement) and exposes 11 fields with key field StoreProductRFIDMovementUUID. It has 1 association 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_StoreProductRFIDMovement I_StoreProductRFIDMovement from

Associations (1)

CardinalityTargetAliasCondition
[0..*] C_MSPRMovementProductInstance _ProductInstance

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey StoreProductRFIDMovementUUID view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL 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 (11)

KeyFieldSource TableSource FieldDescription
KEY StoreProductRFIDMovementUUID StoreProductRFIDMovementUUID Movement ID
CreatedByUser CreatedByUser User Name
CreationDateTime CreationDateTime Timestamp
Store Store Plant
SourceStorageLocation SourceStorageLocation Location
TargetStorageLocation TargetStorageLocation Location
NumberOfSubmittedItems NumberOfSubmittedItems
NotPostedNrOfSubmittedItems NotPostedNrOfSubmittedItems
StoreProdRFIDMovementProcgSts StoreProdRFIDMovementProcgSts Processing Status
_ProductInstance _ProductInstance
_Store _Store

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_MSPRMovement.
-- 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_MSPRMovement AS
SELECT
  StoreProductRFIDMovementUUID,
  CreatedByUser,
  CreationDateTime,
  Store,
  SourceStorageLocation,
  TargetStorageLocation,
  NumberOfSubmittedItems,
  NotPostedNrOfSubmittedItems,
  StoreProdRFIDMovementProcgSts
FROM I_StoreProductRFIDMovement
LEFT OUTER JOIN C_MSPRMovementProductInstance AS _ProductInstance ON /* condition not available in parsed metadata */  -- association [0..*]
;