C_MSPRSettings

DDL: C_MSPRSETTINGS SQL: CMSPRSETTINGS Type: view CONSUMPTION

C_MSPRSettings is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_MoveProdRFIDSettingsForStore) and exposes 5 fields with key field Store. 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_MoveProdRFIDSettingsForStore I_MoveProdRFIDSettingsForStore from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CMSPRSETTINGS view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey Store view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING 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 (5)

KeyFieldSource TableSource FieldDescription
KEY Store Store Plant
PausedTimeAfterSubmitInSecs _BasicSettings PausedTimeAfterSubmitInSecs Ignore After Submit
SessionExpirationTimeInMins _BasicSettings SessionExpirationTimeInMins Session Expires In
RFIDReaderSignalStrength
_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_MSPRSettings.
-- 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.
-- SQL view name: CMSPRSETTINGS

CREATE VIEW C_MSPRSettings AS
SELECT
  Store,
  _BasicSettings.PausedTimeAfterSubmitInSecs AS PausedTimeAfterSubmitInSecs,
  _BasicSettings.SessionExpirationTimeInMins AS SessionExpirationTimeInMins,
  lower(coalesce(_BasicSettings.RFIDReaderSignalStrength, 'LOW')) AS RFIDReaderSignalStrength
FROM I_MoveProdRFIDSettingsForStore
;