C_PurchasingCategoryValueHelp

DDL: C_PURCHASINGCATEGORYVALUEHELP SQL: CPURGCAT_VH Type: view CONSUMPTION

Purchasing Category Value Help

C_PurchasingCategoryValueHelp is a Consumption CDS View that provides data about "Purchasing Category Value Help" in SAP S/4HANA. It reads from 1 data source (I_PurchasingCategory) and exposes 4 fields with key fields PurgCatUUID, PurchasingCategory.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingCategory I_PurchasingCategory from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CPURGCAT_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.semanticKey PurchasingCategory view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Purchasing Category Value Help view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PurgCatUUID PurgCatUUID
KEY PurchasingCategory PurchasingCategory Purchasing Category
PurgCatName PurgCatName Purchasing Cat. Name
PurgCatIsInactive PurgCatIsInactive

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_PurchasingCategoryValueHelp.
-- 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: CPURGCAT_VH

CREATE VIEW C_PurchasingCategoryValueHelp AS
SELECT
  PurgCatUUID,
  PurchasingCategory,
  PurgCatName,
  PurgCatIsInactive
FROM I_PurchasingCategory
;