I_SiteStdVH

DDL: I_SITESTDVH SQL: ISITESVH Type: view COMPOSITE

Value Help for Site

I_SiteStdVH is a Composite CDS View that provides data about "Value Help for Site" in SAP S/4HANA. It reads from 1 data source (I_Site) and exposes 9 fields with key field Site. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_Site I_Site from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_PlantCategoryT _SiteCategoryText $projection.SiteCategory = _SiteCategoryText.PlantCategory
[0..*] I_Address_2 _Address $projection.AddressID = _Address.AddressID

Annotations (17)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName ISITESVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Site view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
EndUserText.label Value Help for Site view
Consumption.ranked true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Site Site Plant
SiteName SiteName
SiteCategory SiteCategory
AddressID AddressID Ship-to address
CityName _Address CityName Name
PostalCode _Address PostalCode Postal Code
StreetName _Address StreetName Text
_SiteCategoryText _SiteCategoryText
_Address _Address

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_SiteStdVH.
-- 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: ISITESVH

CREATE VIEW I_SiteStdVH AS
SELECT
  Site,
  SiteName,
  SiteCategory,
  AddressID,
  _Address.CityName AS CityName,
  _Address.PostalCode AS PostalCode,
  _Address.StreetName AS StreetName
FROM I_Site
LEFT OUTER JOIN I_PlantCategoryT AS _SiteCategoryText ON SiteCategory = _SiteCategoryText.PlantCategory  -- association [0..*]
LEFT OUTER JOIN I_Address_2 AS _Address ON AddressID = _Address.AddressID  -- association [0..*]
;