C_TrdgContrPurchasingGroupVH

DDL: C_TRDGCONTRPURCHASINGGROUPVH Type: view_entity CONSUMPTION

Purchasing Group of Trading Contract

C_TrdgContrPurchasingGroupVH is a Consumption CDS View that provides data about "Purchasing Group of Trading Contract" 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 (15)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Purchasing Group of Trading Contract view
Consumption.valueHelpDefault.fetchValues #AUTOMATICALLY_WHEN_DISPLAYED view
Consumption.ranked true view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey PurchasingGroup view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
UI.headerInfo.typeName Purchasing Group view
UI.headerInfo.typeNamePlural Purchasing Groups view
Search.searchable true 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_TrdgContrPurchasingGroupVH.
-- 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.

CREATE VIEW C_TrdgContrPurchasingGroupVH 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
;