I_CnsldtnMDSource

DDL: I_CNSLDTNMDSOURCE Type: view BASIC Package: FIN_CS_MD_ADDMD_CONFIGURATION

Master Data Source

I_CnsldtnMDSource (Basic)

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

Group Reporting

I_CnsldtnMDSource is a Basic CDS View (Dimension) that provides data about "Master Data Source" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomain) and exposes 3 fields with key field AdditionalMasterDataSource. It has 1 association to related views. Part of development package FIN_CS_MD_ADDMD_CONFIGURATION.

SAP Help Documentation

CategoryCDS Views for Master Data
Data CategoryDimension
StatusReleased
Purpose
This CDS view returns the sources of additional master data. The following sources exist: Accounting, which is represented by the value ACCTG Consolidation, which is represented by the value of CNSLDTN This CDS view provides the prerequisites for answering the following business questions: Which sources of additional master data do exist?

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessGroup Reporting
Application ComponentFIN-CS-MD-2CL
CapabilitiesData Source for Defining CDS Entities,Association Target for Defining CDS Entities,Data Source in SQL Select,Analytical Dimension
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageGroup Reporting for SAP S/4HANA Cloud Public Edition
Description This CDS view returns the sources of additional master data. The following sources exist: <ul> <li> <p>Accounting, which is represented by the value ACCTG</p> </li> <li>Consolidation, which is represented by the value of CNSLDTN</li> </ul> <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which sources of additional master data do exist? </p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnDomain P_CnsldtnDomain from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnMDSourceT _Text $projection.AdditionalMasterDataSource = _Text.AdditionalMasterDataSource

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName ICNSLDTNMDSOURCE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL 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.resultSet.sizeCategory #XS view
ObjectModel.representativeKey AdditionalMasterDataSource view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Search.searchable true view
VDM.viewType #BASIC view
EndUserText.label Master Data Source view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AdditionalMasterDataSource Master Data Source
DomainValue _Domain DomainValue Values for Domains: Single Value/Lower Limit
_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_CnsldtnMDSource.
-- 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_CnsldtnMDSource AS
SELECT
  cast( _Domain.DomainValue as fincs_md_source preserving type ) AS AdditionalMasterDataSource,
  _Domain.DomainValue AS DomainValue
FROM P_CnsldtnDomain
LEFT OUTER JOIN I_CnsldtnMDSourceT AS _Text ON AdditionalMasterDataSource = _Text.AdditionalMasterDataSource  -- association [0..*]
;