A_CnsldtnDocumentTypeT

DDL: A_CNSLDTNDOCUMENTTYPET Type: view BASIC Package: FIN_CS_MD_API

Consolidation Document Type - Text

A_CnsldtnDocumentTypeT is a Basic CDS View that provides data about "Consolidation Document Type - Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnDocumentTypeT) and exposes 6 fields with key fields ConsolidationDocumentType, Language. It has 2 associations to related views. It is exposed through 5 OData services (ASQL_F7093, ASQL_F7094, ASQL_F7095, ...). Part of development package FIN_CS_MD_API.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnDocumentTypeT I_CnsldtnDocumentTypeT from

Associations (2)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnDocumentType _CnsldtnDocumentType $projection.ConsolidationDocumentType = _CnsldtnDocumentType.ConsolidationDocumentType
[0..1] A_CnsldtnDimension _CnsldtnDimension $projection.ConsolidationDimension = _CnsldtnDimension.ConsolidationDimension

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ACSDOCUMENTTYPET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK 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.dataCategory #TEXT view
ObjectModel.representativeKey ConsolidationDocumentType view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Consolidation Document Type - Text view
OData.entitySet.name ConsolidationDocTypeText view

OData Services (5)

ServiceBindingVersionContractRelease
ASQL_F7093 ASQL_F7093 C2 NOT_RELEASED
ASQL_F7094 ASQL_F7094 C2 NOT_RELEASED
ASQL_F7095 ASQL_F7095 C2 NOT_RELEASED
ASQL_F7096 ASQL_F7096 C2 NOT_RELEASED
ASQL_F7867 ASQL_F7867 C2 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationDocumentType ConsolidationDocumentType Document Type
KEY Language Language Report Text Language
ConsolidationDimension ConsolidationDimension Dimension
ConsolidationDocumentTypeText Version Dscrptn
_CnsldtnDimension _CnsldtnDimension
_CnsldtnDocumentType _CnsldtnDocumentType

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 A_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 A_CnsldtnDocumentTypeT AS
SELECT
  ConsolidationDocumentType,
  Language,
  ConsolidationDimension,
  cast(ConsolidationDocumentTypeText as fincs_docty_t preserving type) AS ConsolidationDocumentTypeText
FROM I_CnsldtnDocumentTypeT
LEFT OUTER JOIN A_CnsldtnDocumentType AS _CnsldtnDocumentType ON ConsolidationDocumentType = _CnsldtnDocumentType.ConsolidationDocumentType  -- association [0..1]
LEFT OUTER JOIN A_CnsldtnDimension AS _CnsldtnDimension ON ConsolidationDimension = _CnsldtnDimension.ConsolidationDimension  -- association [0..1]
;