P_StoreGroupFromClassification

DDL: P_STOREGROUPFROMCLASSIFICATION SQL: PSTGRPFROMCLFN Type: view CONSUMPTION Package: RFM_ASSG_PROCMT_PROD

Store Group by Class Site Grouping

P_StoreGroupFromClassification is a Consumption CDS View that provides data about "Store Group by Class Site Grouping" in SAP S/4HANA. It reads from 1 data source (I_ClfnClass) and exposes 6 fields with key field StoreGroupInternalID. Part of development package RFM_ASSG_PROCMT_PROD.

Data Sources (1)

SourceAliasJoin Type
I_ClfnClass I_ClfnClass from

Annotations (10)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName PSTGRPFROMCLFN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY StoreGroupInternalID ClassInternalID Int class no.
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
ClassType ClassType X Flag
ClassMaintAuthGrp ClassMaintAuthGrp Class maint.
_ClassDescription _ClassDescription

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 P_StoreGroupFromClassification.
-- 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: PSTGRPFROMCLFN

CREATE VIEW P_StoreGroupFromClassification AS
SELECT
  ClassInternalID AS StoreGroupInternalID,
  ValidityStartDate,
  ValidityEndDate,
  ClassType,
  ClassMaintAuthGrp
FROM I_ClfnClass
;