C_Productcategoryvh

DDL: C_PRODUCTCATEGORYVH SQL: CPRODCATVH Type: view CONSUMPTION

Article Category Value Help

C_Productcategoryvh is a Consumption CDS View that provides data about "Article Category Value Help" in SAP S/4HANA. It reads from 1 data source (I_Productcategoryvh) and exposes 3 fields with key field ArticleCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_Productcategoryvh ProductCategory from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProductCategoryText _Text $projection.ArticleCategory = _Text.ProductCategory

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CPRODCATVH view
EndUserText.label Article Category Value Help view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey ArticleCategory view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ArticleCategory I_Productcategoryvh ProductCategory Prod Category
DomainValue I_Productcategoryvh DomainValue Lower Value
_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 C_Productcategoryvh.
-- 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: CPRODCATVH

CREATE VIEW C_Productcategoryvh AS
SELECT
  ProductCategory.ProductCategory AS ArticleCategory,
  ProductCategory.DomainValue AS DomainValue
FROM I_Productcategoryvh AS ProductCategory
LEFT OUTER JOIN I_ProductCategoryText AS _Text ON ArticleCategory = _Text.ProductCategory  -- association [0..*]
;