P_DisplayCurrencyMaterialGroup

DDL: P_DISPLAYCURRENCYMATERIALGROUP SQL: PDSPCRCYMATLGRP Type: view CONSUMPTION Package: ODATA_SLC_PURG_CAT

Display currency used for Material Group related Spends(PUC)

P_DisplayCurrencyMaterialGroup is a Consumption CDS View that provides data about "Display currency used for Material Group related Spends(PUC)" in SAP S/4HANA. It reads from 1 data source (I_SAPClient) and exposes 2 fields with key field MaterialGroup. Part of development package ODATA_SLC_PURG_CAT.

Data Sources (1)

SourceAliasJoin Type
I_SAPClient I_SAPClient from

Annotations (6)

NameValueLevelField
VDM.private true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName PDSPCRCYMATLGRP view
EndUserText.label Display currency used for Material Group related Spends(PUC) view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MaterialGroup I_MaterialGroup MaterialGroup Product Group
MaterialGroupDisplayCurrency I_SAPClient GroupCurrency Ledger curr.

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 P_DisplayCurrencyMaterialGroup.
-- 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: PDSPCRCYMATLGRP

CREATE VIEW P_DisplayCurrencyMaterialGroup AS
SELECT
  I_MaterialGroup.MaterialGroup AS MaterialGroup,
  I_SAPClient.GroupCurrency AS MaterialGroupDisplayCurrency
FROM I_SAPClient
;