A_CnsldtnFinTransTypeT

DDL: A_CNSLDTNFINTRANSTYPET SQL: ACSFINTRANSTYPET Type: view COMPOSITE Package: FIN_CS_MD_API

Combined Financial Transaction Type Text

A_CnsldtnFinTransTypeT is a Composite CDS View that provides data about "Combined Financial Transaction Type Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnFinTransTypeT) and exposes 5 fields with key fields Language, FinancialTransactionType. It has 1 association 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_CnsldtnFinTransTypeT _Source from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnFinTransType _CnsldtnFinTransType $projection.FinancialTransactionType = _CnsldtnFinTransType.FinancialTransactionType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ACSFINTRANSTYPET view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Combined Financial Transaction Type Text view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
OData.entitySet.name FinancialTransactionTypeText 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 (5)

KeyFieldSource TableSource FieldDescription
KEY Language I_CnsldtnFinTransTypeT Language Report Text Language
KEY FinancialTransactionType I_CnsldtnFinTransTypeT FinancialTransactionType Transact. Type
FinancialTransactionTypeText I_CnsldtnFinTransTypeT FinancialTransactionTypeName
FinancialTransactionTypeName I_CnsldtnFinTransTypeT FinancialTransactionTypeName
_CnsldtnFinTransType _CnsldtnFinTransType

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_CnsldtnFinTransTypeT.
-- 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.
-- SQL view name: ACSFINTRANSTYPET

CREATE VIEW A_CnsldtnFinTransTypeT AS
SELECT
  _Source.Language AS Language,
  _Source.FinancialTransactionType AS FinancialTransactionType,
  _Source.FinancialTransactionTypeName AS FinancialTransactionTypeText,
  _Source.FinancialTransactionTypeName AS FinancialTransactionTypeName
FROM I_CnsldtnFinTransTypeT AS _Source
LEFT OUTER JOIN A_CnsldtnFinTransType AS _CnsldtnFinTransType ON FinancialTransactionType = _CnsldtnFinTransType.FinancialTransactionType  -- association [0..1]
;