I_CnsldtnInvestmentMethodText

DDL: I_CNSLDTNINVESTMENTMETHODTEXT Type: view BASIC

Consolidation Investment Method - Text

I_CnsldtnInvestmentMethodText (Basic)

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

Group Reporting

I_CnsldtnInvestmentMethodText is a Basic CDS View that provides data about "Consolidation Investment Method - Text" in SAP S/4HANA. It reads from 2 data sources (tf551, tf600) and exposes 5 fields with key fields Language, ConsolidationInvestmentMethod. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessGroup Reporting
Application ComponentFIN-CS-MD
CapabilitiesData Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Data Extraction, Language-Dependent Text
PackageGroup Reporting for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view determines consolidation investment methods used in consolidation tasks.</p> <p>A consolidation investment method is a technique that determines how investments in investee units are consolidated into a group statement. </p> This CDS view provides the data to answer the following business questions:<ul> <li><p>What consolidation investment methods are available? </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 (2)

SourceAliasJoin Type
tf551 _Text from
tf600 _tf600 inner

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_CnsldtnInvestmentMethod _CnsldtnInvestmentMethod $projection.ConsolidationInvestmentMethod = _CnsldtnInvestmentMethod.ConsolidationInvestmentMethod

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName ICSINVMETHODT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey ConsolidationInvestmentMethod view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Consolidation Investment Method - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language Language
KEY ConsolidationInvestmentMethod Consolidation Method
CnsldtnInvestmentMethodText Consolidation Method Description
_Language _Language
_CnsldtnInvestmentMethod _CnsldtnInvestmentMethod

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_CnsldtnInvestmentMethodText.
-- 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_CnsldtnInvestmentMethodText AS
SELECT
  cast(_Text.langu as fincs_language preserving type ) AS Language,
  cast(_Text.cmeth as fincs_investmentmethod preserving type ) AS ConsolidationInvestmentMethod,
  cast (_Text.txt as fincs_investmentmethodtext preserving type) AS CnsldtnInvestmentMethodText
FROM tf551 AS _Text
INNER JOIN tf600 AS _tf600 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
LEFT OUTER JOIN I_CnsldtnInvestmentMethod AS _CnsldtnInvestmentMethod ON ConsolidationInvestmentMethod = _CnsldtnInvestmentMethod.ConsolidationInvestmentMethod  -- association [1..1]
;