C_PurDocItemCategoryValueHelp

DDL: C_PURDOCITEMCATEGORYVALUEHELP SQL: CPURITEMCAT_VH Type: view CONSUMPTION

Purchasing Doc Item Category Value Help

C_PurDocItemCategoryValueHelp is a Consumption CDS View that provides data about "Purchasing Doc Item Category Value Help" in SAP S/4HANA. It reads from 1 data source (I_PurgDocumentItemCategory) and exposes 3 fields with key field PurchasingDocumentItemCategory. It is exposed through 1 OData service (MM_PUR_PROCESS_PR_V4).

Data Sources (1)

SourceAliasJoin Type
I_PurgDocumentItemCategory I_PurgDocumentItemCategory from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CPURITEMCAT_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #NONE view
Search.searchable true view
ObjectModel.semanticKey PurchasingDocumentItemCategory view
ObjectModel.representativeKey PurchasingDocumentItemCategory view
EndUserText.label Purchasing Doc Item Category Value Help view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view

OData Services (1)

ServiceBindingVersionContractRelease
MM_PUR_PROCESS_PR_V4 MM_PUR_PR_PROCESS_V4 V4 C1 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocumentItemCategory PurchasingDocumentItemCategory Item Category
PurgDocExternalItemCategory
PurgDocItemCategoryName

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_PurDocItemCategoryValueHelp.
-- 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: CPURITEMCAT_VH

CREATE VIEW C_PurDocItemCategoryValueHelp AS
SELECT
  PurchasingDocumentItemCategory,
  _Text[1: Language = $session.system_language].PurgDocExternalItemCategory AS PurgDocExternalItemCategory,
  _Text[1: Language = $session.system_language].PurgDocItemCategoryName AS PurgDocItemCategoryName
FROM I_PurgDocumentItemCategory
;