C_PurchasingGroupDP

DDL: C_PURCHASINGGROUPDP Type: view_entity CONSUMPTION Package: MM_PUR_MASTER_DATA_BDC

Purchasing Group

C_PurchasingGroupDP is a Consumption CDS View that provides data about "Purchasing Group" in SAP S/4HANA. It reads from 1 data source (I_PurchasingGroup) and exposes 7 fields with key field PurchasingGroup. It is exposed through 1 OData service (DP_PROCMTCONFIGURATIONDATA). Part of development package MM_PUR_MASTER_DATA_BDC.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingGroup I_PurchasingGroup from

Annotations (12)

NameValueLevelField
Metadata.allowExtensions true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchasing Group view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #EXTERNAL_DATA_PROVIDER view
ObjectModel.representativeKey PurchasingGroup view
ObjectModel.sapObjectNodeType.name PurchasingGroup view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #CONSUMPTION view
PersonalData.entitySemantics #DATA_SUBJECT_DETAILS view

OData Services (1)

ServiceBindingVersionContractRelease
DP_PROCMTCONFIGURATIONDATA DP_PROCMTCONFIGURATIONDATA C2 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY PurchasingGroup PurchasingGroup Purchasing Group
PurchasingGroupName PurchasingGroupName Purchasing Grp. Name
PurchasingGroupPhoneNumber PurchasingGroupPhoneNumber Tel.No.Purch.Gp
FaxNumber FaxNumber Fax Number
PhoneNumber PhoneNumber Telephone no.
PhoneNumberExtension PhoneNumberExtension Extension
EmailAddress EmailAddress E-Mail 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_PurchasingGroupDP.
-- 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_PurchasingGroupDP AS
SELECT
  PurchasingGroup,
  PurchasingGroupName,
  PurchasingGroupPhoneNumber,
  FaxNumber,
  PhoneNumber,
  PhoneNumberExtension,
  EmailAddress
FROM I_PurchasingGroup
;