I_CnsldtnFinTransType

DDL: I_CNSLDTNFINTRANSTYPE Type: view COMPOSITE

Cnsldtn Cmbnd Fin Transaction Type

I_CnsldtnFinTransType (Composite)

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

Consolidation Financial Transaction Type · Group Reporting

I_CnsldtnFinTransType is a Composite CDS View (Dimension) that provides data about "Cnsldtn Cmbnd Fin Transaction Type" in SAP S/4HANA. It has 3 associations to related views.

SAP Help Documentation

CategoryCDS Views for Master Data
Data CategoryDimension
Purpose
This CDS view provides access to the consolidation financial transaction type. It combines the values from CDS view I_FinancialTransactionType with additional values maintained in consolidation only. A consolidation financial transaction type is a financial transaction type that can be used for financial consolidation in group reporting. It can either be a financial transaction type that’s been defined in an area other than group reporting, or it can be a financial transaction type that’s been specifically defined for exclusive use in group reporting. This CDS view provides the data to answer the following business questions: What financial transactions types exist in consolidation? What is the source of values, either from I_FinancialTransactionType or consolidation?

Prerequisites
Authorizations Users who want to use these CDS views must have the following authorization objects assigned: FI_CS_MD (Consolidation Master Data) Configuration FICSMDTYP = FINANCIALTRANSACTIONTYPE (Master Data Type)

Structure
Fields Used for Filtering This view has no filters. Important Fields Field Name Description FinancialTransactionType Financial transaction type

Data Extraction
Data Extraction Type Full (physical deletions are possible in source tables)

View on SAP Help Portal →

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, Analytical Dimension
PackageGroup Reporting for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to the consolidation financial transaction type. It combines the values from CDS view I_FinancialTransactionType with additional values maintained in consolidation only. </p> <p>A consolidation financial transaction type is a financial transaction type that can be used for financial consolidation in group reporting. It can either be a financial transaction type that’s been defined in an area other than group reporting, or it can be a financial transaction type that’s been specifically defined for exclusive use in group reporting. </p> <p>This CDS view provides the data to answer the following business questions: </p> <ul> <li><p>What financial transactions types exist in consolidation? </p></li> <li><p>What is the source of values, either from I_FinancialTransactionType or consolidation? </p></li> </ul>

Documentation

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnFinTransTypeT _Text $projection.FinancialTransactionType = _Text.FinancialTransactionType
[0..*] I_CnsldtnFinTransTypeHierNode _FinTransTypeHierNode $projection.FinancialTransactionType = _FinTransTypeHierNode.FinancialTransactionType
[1..1] I_CnsldtnMDSource _MDSource $projection.AdditionalMasterDataSource = _MDSource.AdditionalMasterDataSource

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName ICSFINTRANSTYPE view
AbapCatalog.compiler.compareFilter true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE 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 FinancialTransactionType view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name CnsldtnFinTransactionType view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Cnsldtn Cmbnd Fin Transaction Type view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY FinancialTransactionType Financial Transaction Type
AdditionalMasterDataSource Consolidation Additional Master Data Source
CnsldtnIsAdditionalMasterData Is Additional Master Data
_MDSource _MDSource
_Text _Text
_FinTransTypeHierNode _FinTransTypeHierNode

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_CnsldtnFinTransType.
-- 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_CnsldtnFinTransType AS
SELECT
  cast( FinancialTransactionType as fincs_financialtransactiontype preserving type ) AS FinancialTransactionType,
  cast( max ( AdditionalMasterDataSource ) as fincs_masterdatasource preserving type ) AS AdditionalMasterDataSource,
  cast( max ( CnsldtnIsAdditionalMasterData ) as fincs_isadditionalmasterdata preserving type ) AS CnsldtnIsAdditionalMasterData
LEFT OUTER JOIN I_CnsldtnFinTransTypeT AS _Text ON FinancialTransactionType = _Text.FinancialTransactionType  -- association [0..*]
LEFT OUTER JOIN I_CnsldtnFinTransTypeHierNode AS _FinTransTypeHierNode ON FinancialTransactionType = _FinTransTypeHierNode.FinancialTransactionType  -- association [0..*]
LEFT OUTER JOIN I_CnsldtnMDSource AS _MDSource ON AdditionalMasterDataSource = _MDSource.AdditionalMasterDataSource  -- association [1..1]
;