C_AssignedStore_F4674

DDL: C_ASSIGNEDSTORE_F4674 SQL: CSASSGDSTORF4674 Type: view CONSUMPTION

C_AssignedStore_F4674 is a Consumption CDS View in SAP S/4HANA. It reads from 2 data sources (I_RetailStoreUserAssignment, I_Site) and exposes 2 fields with key field Store.

Data Sources (2)

SourceAliasJoin Type
I_RetailStoreUserAssignment I_RetailStoreUserAssignment from
I_Site I_Site inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CSASSGDSTORF4674 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 #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Store Store Plant
StoreName

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_AssignedStore_F4674.
-- 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: CSASSGDSTORF4674

CREATE VIEW C_AssignedStore_F4674 AS
SELECT
  Store,
  cast(I_Site.SiteName as storename preserving type) AS StoreName
FROM I_RetailStoreUserAssignment
INNER JOIN I_Site ON /* join condition not captured in parsed metadata */
;