Deprecated NONE
This CDS view is deprecated in S/4HANA. Use C_PurDocItemCategoryValueHelp instead. View all deprecated CDS views →

C_POItemCategoryValueHelp

DDL: C_POITEMCATEGORYVALUEHELP SQL: CPOICATVH Type: view CONSUMPTION

Item Category Value Help

C_POItemCategoryValueHelp is a Consumption CDS View that provides data about "Item Category Value Help" in SAP S/4HANA. It reads from 1 data source (I_PurgDocumentItemCategory) and exposes 3 fields with key field PurchaseOrderItemCategory.

Data Sources (1)

SourceAliasJoin Type
I_PurgDocumentItemCategory I_PurgDocumentItemCategory from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CPOICATVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
Search.searchable true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Item Category Value Help view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor C_PurDocItemCategoryValueHelp view
VDM.lifecycle.contract.type #NONE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrderItemCategory
PurgDocExternalItemCategory
PurOrdItemCategoryName

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_POItemCategoryValueHelp.
-- 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: CPOICATVH

CREATE VIEW C_POItemCategoryValueHelp AS
SELECT
  cast(I_PurgDocumentItemCategory.PurchasingDocumentItemCategory as vdm_itemcategory) AS PurchaseOrderItemCategory,
  cast(_Text[1: Language = $session.system_language].PurgDocExternalItemCategory as vdm_itemcategory) AS PurgDocExternalItemCategory,
  cast(_Text[1: Language = $session.system_language].PurgDocItemCategoryName as vdm_purdocitencategoryname) AS PurOrdItemCategoryName
FROM I_PurgDocumentItemCategory
;