I_CnsldtnDocumentTypeT

DDL: I_CNSLDTNDOCUMENTTYPET Type: view BASIC Package: FIN_CS_MD_DOCUMENTTYPE

Consolidation Document Type - Text

I_CnsldtnDocumentTypeT (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_CnsldtnDocumentTypeT is a Basic CDS View that provides data about "Consolidation Document Type - Text" in SAP S/4HANA. It reads from 1 data source (tf501) and exposes 6 fields with key fields ConsolidationDimension, ConsolidationDocumentType, Language. It has 2 associations to related views. It is exposed through 2 OData services (ASQL_F2971, ASQL_F6164). Part of development package FIN_CS_MD_DOCUMENTTYPE.

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,Language-Dependent Text
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

Documentation

Data Sources (1)

SourceAliasJoin Type
tf501 tf501 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_CnsldtnDimension _Dimension $projection.ConsolidationDimension = _Dimension.ConsolidationDimension

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName ICCDOCTYPET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey ConsolidationDocumentType view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
VDM.viewType #BASIC view
EndUserText.label Consolidation Document Type - Text view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F2971 ASQL_F2971 C2 NOT_RELEASED
ASQL_F6164 ASQL_F6164 C2 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationDimension dimen Dimension Unit
KEY ConsolidationDocumentType docty Document Type
KEY Language langu Primary lang.
ConsolidationDocumentTypeText txt Version Dscrptn
_Dimension _Dimension
_Language _Language

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_CnsldtnDocumentTypeT.
-- 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_CnsldtnDocumentTypeT AS
SELECT
  dimen AS ConsolidationDimension,
  docty AS ConsolidationDocumentType,
  langu AS Language,
  txt AS ConsolidationDocumentTypeText
FROM tf501
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_CnsldtnDimension AS _Dimension ON ConsolidationDimension = _Dimension.ConsolidationDimension  -- association [0..1]
;