Deprecated
This CDS view is deprecated in S/4HANA. Use I_CO2eqSuplrFprntAvgBaseUoM_2 instead. View all deprecated CDS views →

I_CO2eqSuplrFprntAvgBaseUoM

DDL: I_CO2EQSUPLRFPRNTAVGBASEUOM Type: view_entity COMPOSITE

Avg Suplr Related CO2eq Footprint

I_CO2eqSuplrFprntAvgBaseUoM (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_CO2eqSuplrFprntAvgBaseUoM is a Composite CDS View that provides data about "Avg Suplr Related CO2eq Footprint" in SAP S/4HANA. It reads from 3 data sources (I_PFMMasterDataFootprint, I_PFMMasterDataFootprintQty, I_PFMProdPlntSuplrFootprint) and exposes 16 fields with key fields Product, Plant, Supplier.

SAP Help Documentation

CategoryCDS Views for Product Footprint Management
Purpose
This CDS view is used to access CO2e footprint data for products, plants, and suppliers. Footprint data of logically deleted suppliers or products can be retrieved regardless.

Prerequisites
If you want to retrieve footprint data of blocked suppliers, you need to have the proper authorizations.

Structure
Important fields: Field Name Description Product Product Plant Plant Supplier Supplier PFMFootprintQuantity The CO2e footprint quantity value as floating-point decimal ( DECFLOAT34 ) PFMFootprintFxdPtDcmlQuantity The CO2e footprint quantity value as fixed-point decimal ( QUAN ). This field is provided for compatibility reasons and should be used in cases where it is technically not possible to consume the floating-point decimal value. PFMFootprintUnit The unit of measure of the CO2e footprint quantity value PFMFootprintCalculatedBy Calculator used for the footprint calculation PFMFootprintValidFromDate The Valid From date of the footprint PFMFootprintValidToDate The Valid To date of the footprint PFMFootprintPeriodStartDate The Period Start date of the footprint PFMFootprintPeriodEndDate The Period End date of the footprint

View on SAP Help Portal →

SAP API Hub

StateDeprecated
Line of BusinessCross Applications
Application ComponentSUS-PFM-INT
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view is used to access CO2e footprint data for products, plants, and suppliers.</p> <p>Footprint data of logically deleted suppliers or products can be retrieved regardless.</p>

Documentation

Data Sources (3)

SourceAliasJoin Type
I_PFMMasterDataFootprint _PFMMasterDataFootprint inner
I_PFMMasterDataFootprintQty _PFMMasterDataFootprintQty inner
I_PFMProdPlntSuplrFootprint I_PFMProdPlntSuplrFootprint from

Annotations (11)

NameValueLevelField
EndUserText.label Avg Suplr Related CO2eq Footprint view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #COMPOSITE view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_CO2eqSuplrFprntAvgBaseUoM_2 view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY Product I_PFMProdPlntSuplrFootprint Product Product Number
KEY Plant I_PFMProdPlntSuplrFootprint Plant Valuation Area
KEY Supplier I_PFMProdPlntSuplrFootprint Supplier Account Number of Supplier
PFMFootprintQuantity I_PFMMasterDataFootprintQty PFMFootprintQuantity Footprint Quantity
PFMFootprintFxdPtDcmlQuantity Footprint Quantity
PFMFootprintUnit I_PFMMasterDataFootprintQty PFMFootprintUnit CO2e Footprint Unit
PFMFootprintCalculatedBy I_PFMMasterDataFootprint PFMFootprintCalculatedBy Calculator used for the footprint calculation
PFMFootprintValidFromDate I_PFMMasterDataFootprint PFMFootprintValidFromDate Footprint Valid From Date
PFMFootprintValidToDate I_PFMMasterDataFootprint PFMFootprintValidToDate Footprint Valid To Date
PFMFootprintPeriodStartDate I_PFMMasterDataFootprint PFMFootprintPeriodStartDate Footprint Period Start Date
PFMFootprintPeriodEndDate I_PFMMasterDataFootprint PFMFootprintPeriodEndDate Footprint Period End Date
DataControllerSet BP: Data Controller Set Flag
_Product I_PFMProdPlntSuplrFootprint _Product
_Plant I_PFMProdPlntSuplrFootprint _Plant
_Supplier I_PFMProdPlntSuplrFootprint _Supplier
_UnitOfMeasure I_PFMMasterDataFootprintQty _UnitOfMeasure

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 I_CO2eqSuplrFprntAvgBaseUoM.
-- 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 I_CO2eqSuplrFprntAvgBaseUoM AS
SELECT
  I_PFMProdPlntSuplrFootprint.Product AS Product,
  I_PFMProdPlntSuplrFootprint.Plant AS Plant,
  I_PFMProdPlntSuplrFootprint.Supplier AS Supplier,
  _PFMMasterDataFootprintQty.PFMFootprintQuantity AS PFMFootprintQuantity,
  cast (_PFMMasterDataFootprintQty.PFMFootprintQuantity as pfmfootprintquantity_quan) AS PFMFootprintFxdPtDcmlQuantity,
  _PFMMasterDataFootprintQty.PFMFootprintUnit AS PFMFootprintUnit,
  _PFMMasterDataFootprint.PFMFootprintCalculatedBy AS PFMFootprintCalculatedBy,
  _PFMMasterDataFootprint.PFMFootprintValidFromDate AS PFMFootprintValidFromDate,
  _PFMMasterDataFootprint.PFMFootprintValidToDate AS PFMFootprintValidToDate,
  _PFMMasterDataFootprint.PFMFootprintPeriodStartDate AS PFMFootprintPeriodStartDate,
  _PFMMasterDataFootprint.PFMFootprintPeriodEndDate AS PFMFootprintPeriodEndDate,
  I_PFMProdPlntSuplrFootprint._Supplier.DataControllerSet AS DataControllerSet,
  I_PFMProdPlntSuplrFootprint._Product AS _Product,
  I_PFMProdPlntSuplrFootprint._Plant AS _Plant,
  I_PFMProdPlntSuplrFootprint._Supplier AS _Supplier,
  _PFMMasterDataFootprintQty._UnitOfMeasure AS _UnitOfMeasure
FROM I_PFMProdPlntSuplrFootprint
INNER JOIN I_PFMMasterDataFootprintQty AS _PFMMasterDataFootprintQty ON /* join condition not captured in parsed metadata */
INNER JOIN I_PFMMasterDataFootprint AS _PFMMasterDataFootprint ON /* join condition not captured in parsed metadata */
;