I_CnsldtnGHGEnergyMix

DDL: I_CNSLDTNGHGENERGYMIX Type: view_entity COMPOSITE Package: FIN_CS_MD_GREENHOUSE_GAS

Consolidation Greenhouse Gas Energy Mix

I_CnsldtnGHGEnergyMix (Composite)

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

Consolidation Greenhouse Gas Energy Mix · Group Reporting

I_CnsldtnGHGEnergyMix is a Composite CDS View (Dimension) that provides data about "Consolidation Greenhouse Gas Energy Mix" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnBusinessSwitch) and exposes 2 fields with key field GHGEnergyMix. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F2573). Part of development package FIN_CS_MD_GREENHOUSE_GAS.

SAP Help Documentation

CategoryCDS Views for Master Data
Data CategoryDimension
Purpose
This CDS view provides access to the consolidation greenhouse gas energy mix. This CDS view provides the data to answer the following business questions: What greenhouse gas energy mixes exist? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations One of the following business catalogs needs to be assigned to a user to be able to use these CDS views: SAP_FIN_BC_CCON_MDORG_PC SAP_A4C_BC_DEV_TST_FI_CCON_PC Configuration The greenhouse gas energy mix represents an additional characteristic that is only available when the FINCS_ENABLE_GHG_FIELDS business function is activated in the Activate Fields for Greenhouse Gas configuration step.

SAP Business Warehouse (SAP BW) Extraction
Data Extraction Type This CDS view is enabled for data extraction in full mode. Physical deletions are possible in source tables.

View on SAP Help Portal →

SAP API Hub

CategoryComposite
StateC1
Line of BusinessGroup Reporting
Application ComponentFIN-CS-MD-2CL
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Data Source in SQL Select,Association Target for Defining CDS Entities,Analytical Dimension
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageGroup Reporting for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view provides access to the consolidation greenhouse gas energy mix.</p> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li><p>What greenhouse gas energy mixes exist?</p></li> </ul> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnBusinessSwitch _BusinessSwitch inner

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnGHGEnergyMixT _Text $projection.GHGEnergyMix = _Text.GHGEnergyMix

Annotations (15)

NameValueLevelField
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #MANDATORY view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey GHGEnergyMix view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name CnsldtnGHGEnergyMix view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Consolidation Greenhouse Gas Energy Mix view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F2573 ASQL_F2573 C2 NOT_RELEASED

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY GHGEnergyMix Greenhouse Gas Energy Mix
_Text _Text

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_CnsldtnGHGEnergyMix.
-- 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_CnsldtnGHGEnergyMix AS
SELECT
  cast( _Source.GHGEnergyMix as fincs_ghgenergymix preserving type ) AS GHGEnergyMix
INNER JOIN I_CnsldtnBusinessSwitch AS _BusinessSwitch ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CnsldtnGHGEnergyMixT AS _Text ON GHGEnergyMix = _Text.GHGEnergyMix  -- association [0..*]
;