C_PurContrItemCategoryVH

DDL: C_PURCONTRITEMCATEGORYVH SQL: CPURCONTRITMCAT Type: view CONSUMPTION

C-View for Item Category Value Help in Purchase Contracts

C_PurContrItemCategoryVH is a Consumption CDS View that provides data about "C-View for Item Category Value Help in Purchase Contracts" in SAP S/4HANA. It reads from 1 data source (I_PurgDocumentItemCategory) and exposes 3 fields with key field PurchasingDocumentItemCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_PurgDocumentItemCategory I_PurgDocumentItemCategory from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_PurgDocumentItemCategoryText _Text $projection.PurchasingDocumentItemCategory = _Text.PurchasingDocumentItemCategory

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CPURCONTRITMCAT view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey PurchasingDocumentItemCategory view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label C-View for Item Category Value Help in Purchase Contracts view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocumentItemCategory PurchasingDocumentItemCategory Item Category
PurgDocItemCategoryName _Text PurgDocItemCategoryName Text for ItCat.
PurgDocExternalItemCategory _Text PurgDocExternalItemCategory Item Category

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_PurContrItemCategoryVH.
-- 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: CPURCONTRITMCAT

CREATE VIEW C_PurContrItemCategoryVH AS
SELECT
  PurchasingDocumentItemCategory,
  _Text.PurgDocItemCategoryName AS PurgDocItemCategoryName,
  _Text.PurgDocExternalItemCategory AS PurgDocExternalItemCategory
FROM I_PurgDocumentItemCategory
LEFT OUTER JOIN I_PurgDocumentItemCategoryText AS _Text ON PurchasingDocumentItemCategory = _Text.PurchasingDocumentItemCategory  -- association [0..1]
;