C_CSPRCountForceSubmitAuthzn

DDL: C_CSPRCOUNTFORCESUBMITAUTHZN SQL: CCSPRFRCSBMTCNT Type: view CONSUMPTION Package: ODATA_RETAIL_ST_CNT_PROD_RFID

Check if user has auth. to force the submit of an RFID Count

C_CSPRCountForceSubmitAuthzn is a Consumption CDS View that provides data about "Check if user has auth. to force the submit of an RFID Count" in SAP S/4HANA. It reads from 1 data source (I_Site) and exposes 2 fields with key field Store. Part of development package ODATA_RETAIL_ST_CNT_PROD_RFID.

Data Sources (1)

SourceAliasJoin Type
I_Site I_Site from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CCSPRFRCSBMTCNT view
EndUserText.label Check if user has auth. to force the submit of an RFID Count view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK 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 (2)

KeyFieldSource TableSource FieldDescription
KEY Store Site Plant
UserHasRFIDCountSubmitAuthzn

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_CSPRCountForceSubmitAuthzn.
-- 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: CCSPRFRCSBMTCNT

CREATE VIEW C_CSPRCountForceSubmitAuthzn AS
SELECT
  Site AS Store,
  cast ('X' as abap.char(1)) AS UserHasRFIDCountSubmitAuthzn
FROM I_Site
;