A_CnsldtnFinTransTypeHierDir

DDL: A_CNSLDTNFINTRANSTYPEHIERDIR Type: view BASIC

Combined Fin Transaction Type Hier Dir

A_CnsldtnFinTransTypeHierDir is a Basic CDS View that provides data about "Combined Fin Transaction Type Hier Dir" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnFinTransTypeHierarchy) and exposes 7 fields with key fields AdditionalMasterDataHierarchy, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnFinTransTypeHierarchy I_CnsldtnFinTransTypeHierarchy from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ACSTRANTYPDIR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey AdditionalMasterDataHierarchy view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Combined Fin Transaction Type Hier Dir view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY AdditionalMasterDataHierarchy
KEY ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
LastChangedByUser LastChangedByUser User Name
LastChangeDateTime LastChangeDateTime Timestamp
MDHierType
HierarchyType

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_CnsldtnFinTransTypeHierDir.
-- 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_CnsldtnFinTransTypeHierDir AS
SELECT
  cast(left(CnsldtnFinTransTypeHierarchy, 40) as fincs_hryid_fintransactiontype preserving type ) AS AdditionalMasterDataHierarchy,
  ValidityEndDate,
  ValidityStartDate,
  LastChangedByUser,
  LastChangeDateTime,
  cast('CS07' as hrytype preserving type ) AS MDHierType,
  cast('CS07' as hrytype preserving type ) AS HierarchyType
FROM I_CnsldtnFinTransTypeHierarchy
;