I_RetailAddlCustGrp7

DDL: I_RETAILADDLCUSTGRP7 SQL: ISDRETCUSTGRP7 Type: view BASIC

Retail Additional Customer Group 7

I_RetailAddlCustGrp7 is a Basic CDS View (Dimension) that provides data about "Retail Additional Customer Group 7" in SAP S/4HANA. It reads from 1 data source (fsh_tvv7) and exposes 4 fields with key fields RetailAdditionalCustomerGrp7, SalesOrganization. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
fsh_tvv7 fsh_tvv7 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_SalesOrganization _SalesOrganization $projection.SalesOrganization = _SalesOrganization.SalesOrganization
[0..*] I_RetailAddlCustGrp7Text _Text $projection.RetailAdditionalCustomerGrp7 = _Text.RetailAdditionalCustomerGrp7 and $projection.SalesOrganization = _Text.SalesOrganization

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName ISDRETCUSTGRP7 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Retail Additional Customer Group 7 view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey RetailAdditionalCustomerGrp7 view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
Metadata.ignorePropagatedAnnotations true view
Analytics.internalName #LOCAL view
Search.searchable true view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY RetailAdditionalCustomerGrp7 kvgr7 Customer Grp 7
KEY SalesOrganization vkorg SD Sales Org.
_SalesOrganization _SalesOrganization
_Text _Text

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 I_RetailAddlCustGrp7.
-- 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: ISDRETCUSTGRP7

CREATE VIEW I_RetailAddlCustGrp7 AS
SELECT
  kvgr7 AS RetailAdditionalCustomerGrp7,
  vkorg AS SalesOrganization
FROM fsh_tvv7
LEFT OUTER JOIN I_SalesOrganization AS _SalesOrganization ON SalesOrganization = _SalesOrganization.SalesOrganization  -- association [0..1]
LEFT OUTER JOIN I_RetailAddlCustGrp7Text AS _Text ON RetailAdditionalCustomerGrp7 = _Text.RetailAdditionalCustomerGrp7 AND SalesOrganization = _Text.SalesOrganization  -- association [0..*]
;