C_PurchasingGroupValueHelp

DDL: C_PURCHASINGGROUPVALUEHELP SQL: CPURGRP_VH Type: view CONSUMPTION

Purchasing Group Value Help

C_PurchasingGroupValueHelp is a Consumption CDS View that provides data about "Purchasing Group Value Help" in SAP S/4HANA. It reads from 1 data source (I_PurchasingGroup) and exposes 7 fields with key field PurchasingGroup.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingGroup PurchasingGroup from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CPURGRP_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.semanticKey PurchasingGroup view
ObjectModel.representativeKey PurchasingGroup view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #VALUE_HELP view
EndUserText.label Purchasing Group Value Help view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY PurchasingGroup I_PurchasingGroup PurchasingGroup Purchasing Group
PurchasingGroupName I_PurchasingGroup PurchasingGroupName Purchasing Grp. Name
PurchasingGroupPhoneNumber I_PurchasingGroup PurchasingGroupPhoneNumber Tel. No. of Purchasing Grp.
PhoneNumber I_PurchasingGroup PhoneNumber Tel. No. with Dialing Code
PhoneNumberExtension I_PurchasingGroup PhoneNumberExtension Extension
FaxNumber I_PurchasingGroup FaxNumber Fax
EmailAddress I_PurchasingGroup EmailAddress Email Address

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_PurchasingGroupValueHelp.
-- 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: CPURGRP_VH

CREATE VIEW C_PurchasingGroupValueHelp AS
SELECT
  PurchasingGroup.PurchasingGroup AS PurchasingGroup,
  PurchasingGroup.PurchasingGroupName AS PurchasingGroupName,
  PurchasingGroup.PurchasingGroupPhoneNumber AS PurchasingGroupPhoneNumber,
  PurchasingGroup.PhoneNumber AS PhoneNumber,
  PurchasingGroup.PhoneNumberExtension AS PhoneNumberExtension,
  PurchasingGroup.FaxNumber AS FaxNumber,
  PurchasingGroup.EmailAddress AS EmailAddress
FROM I_PurchasingGroup AS PurchasingGroup
;