I_CnsldtnMDSourceT

DDL: I_CNSLDTNMDSOURCET Type: view BASIC

Master Data Source - Text

I_CnsldtnMDSourceT (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_CnsldtnMDSourceT is a Basic CDS View that provides data about "Master Data Source - Text" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomainText) and exposes 6 fields with key fields Language, AdditionalMasterDataSource. It has 1 association 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, Language-Dependent Text
PackageGroup Reporting for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnDomainText P_CnsldtnDomainText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_CnsldtnMDSource _MDSource $projection.AdditionalMasterDataSource = _MDSource.AdditionalMasterDataSource

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ICSMDSOURCET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Analytics.dataExtraction.enabled false view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey AdditionalMasterDataSource view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Search.searchable true view
VDM.viewType #BASIC view
EndUserText.label Master Data Source - Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language Language Key
KEY AdditionalMasterDataSource Master Data Source
MDSourceForConsolidationFields _DomainT DomainValueText Description
DomainValue _DomainT DomainValue Values for Domains: Single Value/Lower Limit
_Language _Language
_MDSource _MDSource

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_CnsldtnMDSourceT.
-- 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_CnsldtnMDSourceT AS
SELECT
  cast(_DomainT.Language as spras preserving type ) AS Language,
  cast( _DomainT.DomainValue as fincs_md_source preserving type ) AS AdditionalMasterDataSource,
  _DomainT.DomainValueText AS MDSourceForConsolidationFields,
  _DomainT.DomainValue AS DomainValue
FROM P_CnsldtnDomainText
LEFT OUTER JOIN I_CnsldtnMDSource AS _MDSource ON AdditionalMasterDataSource = _MDSource.AdditionalMasterDataSource  -- association [1..1]
;