I_JournalFieldElementText

DDL: I_JOURNALFIELDELEMENTTEXT SQL: IJRNLFLDELEMTXT Type: view BASIC Package: ODATA_INSPECT_ITEMS_CHNGLOG

Journal Field Element Text

I_JournalFieldElementText is a Basic CDS View that provides data about "Journal Field Element Text" in SAP S/4HANA. It reads from 1 data source (P_DataElementText) and exposes 6 fields with key fields DatabaseTable, DatabaseTableFieldName, Language. Part of development package ODATA_INSPECT_ITEMS_CHNGLOG.

Data Sources (1)

SourceAliasJoin Type
P_DataElementText P_DataElementText from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IJRNLFLDELEMTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey DatabaseTableFieldName view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Journal Field Element Text view
VDM.viewType #BASIC view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY DatabaseTable DatabaseTable Table Name
KEY DatabaseTableFieldName DatabaseTableFieldName UI Group FieldName
KEY Language Language Report Text Language
ABAPDataElementHeading
ABAPMediumFieldLabel ABAPMediumFieldLabel Field Label
_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_JournalFieldElementText.
-- 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: IJRNLFLDELEMTXT

CREATE VIEW I_JournalFieldElementText AS
SELECT
  DatabaseTable,
  DatabaseTableFieldName,
  Language,
  ABAPMediumFieldLabel
FROM P_DataElementText
;