C_SSPPurchasingGroup

DDL: C_SSPPURCHASINGGROUP SQL: CSSPPURCHGROUP Type: view CONSUMPTION

Purchasing Group

C_SSPPurchasingGroup 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 11 fields with key fields PurchasingGroup, Material, MaterialGroup, Plant.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingGroup I_PurchasingGroup from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CSSPPURCHGROUP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Purchasing Group view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY PurchasingGroup PurchasingGroup Purchasing Group
KEY Material
KEY MaterialGroup
KEY Plant
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
ProcurementHubSourceSystem

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_SSPPurchasingGroup.
-- 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: CSSPPURCHGROUP

CREATE VIEW C_SSPPurchasingGroup AS
SELECT
  PurchasingGroup,
  cast (' ' as matnr ) AS Material,
  cast (' ' as matkl ) AS MaterialGroup,
  cast (' ' as ewerk ) AS Plant,
  PurchasingGroupName,
  PurchasingGroupPhoneNumber,
  FaxNumber,
  PhoneNumber,
  PhoneNumberExtension,
  EmailAddress,
  cast (' ' as abap.char( 10 ) ) AS ProcurementHubSourceSystem
FROM I_PurchasingGroup
;