P_CITJournalEntryFieldT

DDL: P_CITJOURNALENTRYFIELDT SQL: PCITJRNLENTRFLDT Type: view BASIC

P_CITJournalEntryFieldT is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (dd03l, dd04t) and exposes 3 fields with key fields Language, CITHierarchyFieldName.

Data Sources (2)

SourceAliasJoin Type
dd03l dd03l from
dd04t dd04t inner

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PCITJRNLENTRFLDT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language dd04t ddlanguage Lang.
KEY CITHierarchyFieldName dd03l fieldname UI Group FieldName
CITHierarchyFieldText dd04t ddtext Short text

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 P_CITJournalEntryFieldT.
-- 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: PCITJRNLENTRFLDT

CREATE VIEW P_CITJournalEntryFieldT AS
SELECT
  dd04t.ddlanguage AS Language,
  dd03l.fieldname AS CITHierarchyFieldName,
  dd04t.ddtext AS CITHierarchyFieldText
FROM dd03l
INNER JOIN dd04t ON /* join condition not captured in parsed metadata */
;