A_CnsldtnGLRecordTypeT

DDL: A_CNSLDTNGLRECORDTYPET Type: view BASIC

Record Type of General Ledger - Text

A_CnsldtnGLRecordTypeT is a Basic CDS View that provides data about "Record Type of General Ledger - Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnGLRecordTypeText) and exposes 3 fields with key fields Language, GLRecordType.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnGLRecordTypeText I_CnsldtnGLRecordTypeText from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ACSGLRECORDTYPT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED 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.dataCategory #TEXT view
ObjectModel.representativeKey GLRecordType view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Record Type of General Ledger - Text view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY GLRecordType GLRecordType Record Type
GLRecordTypeName

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_CnsldtnGLRecordTypeT.
-- 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_CnsldtnGLRecordTypeT AS
SELECT
  Language,
  GLRecordType,
  cast(GLRecordTypeName as fincs_glrcty_t preserving type) AS GLRecordTypeName
FROM I_CnsldtnGLRecordTypeText
;