I_PurchaseGroupValueHelp

DDL: I_PURCHASEGROUPVALUEHELP SQL: IPURCHGGRPVH Type: view BASIC

I_PurchaseGroupValueHelp is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (P_Purchase_Group) and exposes 3 fields with key field PurchasingGroup.

Data Sources (1)

SourceAliasJoin Type
P_Purchase_Group P_Purchase_Group from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPURCHGGRPVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #MANDATORY view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingGroup ekgrp Sub. purchasing grp
PurchasingGroupName eknam Purchase Group Name
PurchasingGroupPhoneNumber ektel Tel.No.Purch.Gp

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 I_PurchaseGroupValueHelp.
-- 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: IPURCHGGRPVH

CREATE VIEW I_PurchaseGroupValueHelp AS
SELECT
  ekgrp AS PurchasingGroup,
  eknam AS PurchasingGroupName,
  ektel AS PurchasingGroupPhoneNumber
FROM P_Purchase_Group
;