I_StoreValueHelp

DDL: I_STOREVALUEHELP Type: view_entity COMPOSITE

Store

I_StoreValueHelp is a Composite CDS View that provides data about "Store" in SAP S/4HANA. It reads from 1 data source (I_Site) and exposes 10 fields with key field Site.

Data Sources (1)

SourceAliasJoin Type
I_Site I_Site from

Annotations (10)

NameValueLevelField
EndUserText.label Store view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view
Search.searchable true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Site Store ID
SiteName SiteName Store Name
SiteCustomer
SalesOrganization SalesOrganization Sales Organization
SalesOrganizationName
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
DistributionChannelName
_Customer _Customer
_SalesOrganization _SalesOrganization
_DistributionChannel _DistributionChannel

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_StoreValueHelp.
-- 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.

CREATE VIEW I_StoreValueHelp AS
SELECT
  cast ( Site as rfm_asm_store preserving type ) AS Site,
  SiteName,
  cast ( SiteCustomer as rfm_asm_store_customer preserving type ) AS SiteCustomer,
  SalesOrganization,
  _SalesOrganization._Text[1:Language = $session.system_language].SalesOrganizationName AS SalesOrganizationName,
  DistributionChannel,
  _DistributionChannel._Text[1:Language = $session.system_language].DistributionChannelName AS DistributionChannelName
FROM I_Site
;