I_CnsldtnSustModeOfTransport

DDL: I_CNSLDTNSUSTMODEOFTRANSPORT Type: view_entity COMPOSITE Package: FIN_CS_MD_GREENHOUSE_GAS

Cnsldtn Sustainability Mode of Transport

I_CnsldtnSustModeOfTransport (Composite)

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

Consolidation Sustainability Mode of Transport · Group Reporting

I_CnsldtnSustModeOfTransport is a Composite CDS View (Dimension) that provides data about "Cnsldtn Sustainability Mode of Transport" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnBusinessSwitch) and exposes 3 fields with key field SustainabilityModeOfTransport. It has 1 association to related views. Part of development package FIN_CS_MD_GREENHOUSE_GAS.

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

Documentation

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnBusinessSwitch _BusinessSwitch inner

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnSustModeOfTransportT _Text $projection.SustainabilityModeOfTransport = _Text.SustainabilityModeOfTransport

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 SustainabilityModeOfTransport view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name CnsldtnSustModeOfTransport view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Cnsldtn Sustainability Mode of Transport view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SustainabilityModeOfTransport Sustainability Mode of Transport
CnsldtnIsAdditionalMasterData Is Additional Master Data
_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_CnsldtnSustModeOfTransport.
-- 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_CnsldtnSustModeOfTransport AS
SELECT
  cast( _Source.SustainabilityModeOfTransport as fincs_sustmodeoftransport preserving type ) AS SustainabilityModeOfTransport,
  cast( max ( _Source.CnsldtnIsAdditionalMasterData ) as fincs_isadditionalmasterdata preserving type ) AS CnsldtnIsAdditionalMasterData
INNER JOIN I_CnsldtnBusinessSwitch AS _BusinessSwitch ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CnsldtnSustModeOfTransportT AS _Text ON SustainabilityModeOfTransport = _Text.SustainabilityModeOfTransport  -- association [0..*]
;