C_CSPRSettings

DDL: C_CSPRSETTINGS SQL: CCSPRSETTINGS Type: view CONSUMPTION Package: ODATA_RETAIL_ST_CNT_PROD_RFID

Count Products with RFID: Settings

C_CSPRSettings is a Consumption CDS View that provides data about "Count Products with RFID: Settings" in SAP S/4HANA. It reads from 1 data source (I_CntStoreProdRFIDSttgForStore) and exposes 3 fields with key field Store. Part of development package ODATA_RETAIL_ST_CNT_PROD_RFID.

Data Sources (1)

SourceAliasJoin Type
I_CntStoreProdRFIDSttgForStore I_CntStoreProdRFIDSttgForStore from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CCSPRSETTINGS view
EndUserText.label Count Products with RFID: Settings view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey Store view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Store Store Plant
StoreProdRFIDCntSubmThldInPct _BasicSettings StoreProdRFIDCntSubmThldInPct Threshold
RFIDReaderSignalStrength

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_CSPRSettings.
-- 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: CCSPRSETTINGS

CREATE VIEW C_CSPRSettings AS
SELECT
  Store,
  _BasicSettings.StoreProdRFIDCntSubmThldInPct AS StoreProdRFIDCntSubmThldInPct,
  lower(coalesce(_BasicSettings.RFIDReaderSignalStrength, 'HIGH')) AS RFIDReaderSignalStrength
FROM I_CntStoreProdRFIDSttgForStore
;