C_CSPRCountSubmitAuthorization

DDL: C_CSPRCOUNTSUBMITAUTHORIZATION SQL: CCSPRSUBMITCNT Type: view CONSUMPTION

Check if the user has authorization to submit an RFID Count

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

Data Sources (1)

SourceAliasJoin Type
I_Site I_Site from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CCSPRSUBMITCNT view
EndUserText.label Check if the user has authorization to submit 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_CSPRCountSubmitAuthorization.
-- 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: CCSPRSUBMITCNT

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