I_GLRecordTypeValueHelpText

DDL: I_GLRECORDTYPEVALUEHELPTEXT SQL: IFIGLRECORDVT Type: view BASIC

GL Record Type - Text

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

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (15)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label GL Record Type - Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
AbapCatalog.sqlViewName IFIGLRECORDVT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey GLRecordType view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language Lang.
KEY GLRecordType
GLRecordTypeName Short text
_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_GLRecordTypeValueHelpText.
-- 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: IFIGLRECORDVT

CREATE VIEW I_GLRecordTypeValueHelpText AS
SELECT
  cast( ddlanguage as spras ) AS Language,
  cast( substring(domvalue_l, 1, 1) as fis_rrcty_act ) AS GLRecordType,
  cast( ddtext as fis_glrecordtypename preserving type ) AS GLRecordTypeName
FROM dd07t
;