P_TMFK_ValueHelp

DDL: P_TMFK_VALUEHELP SQL: PTMFKVH Type: view BASIC

P_TMFK_ValueHelp is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (tmfk) and exposes 4 fields with key field lfart. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tmfk tmfk from

Associations (1)

CardinalityTargetAliasCondition
[0..*] tmfkt _DocTypeText $projection.lfart = _DocTypeText.lfart

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PTMFKVH view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AbapCatalog.preserveKey true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY lfart tmfk lfart Settl Doc Type
vtext
lftyp tmfk lftyp Sett. Doc. Cat.
abart tmfk abart Settl. Category

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_TMFK_ValueHelp.
-- 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: PTMFKVH

CREATE VIEW P_TMFK_ValueHelp AS
SELECT
  tmfk.lfart AS lfart,
  _DocTypeText[1: spras = $session.system_language ].vtext AS vtext,
  tmfk.lftyp AS lftyp,
  tmfk.abart AS abart
FROM tmfk
LEFT OUTER JOIN tmfkt AS _DocTypeText ON lfart = _DocTypeText.lfart  -- association [0..*]
;