V_PaytFrmtParamStruct

DDL: V_PAYTFRMTPARAMSTRUCT SQL: VPAYFRMTPARMSTRU Type: view

Payment Format Parameter Structure

V_PaytFrmtParamStruct is a CDS View that provides data about "Payment Format Parameter Structure" in SAP S/4HANA. It reads from 2 data sources (dd02l, dd02t) and exposes 2 fields with key field tabname.

Data Sources (2)

SourceAliasJoin Type
dd02l dd02l from
dd02t dd02t left_outer

Annotations (9)

NameValueLevelField
EndUserText.label Payment Format Parameter Structure view
AbapCatalog.sqlViewName VPAYFRMTPARMSTRU view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY tabname
ddtext 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 V_PaytFrmtParamStruct.
-- 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: VPAYFRMTPARMSTRU

CREATE VIEW V_PaytFrmtParamStruct AS
SELECT
  cast(dd02l.tabname as formf_fcupm preserving type) AS tabname,
  ddtext
FROM dd02l
LEFT OUTER JOIN dd02t ON /* join condition not captured in parsed metadata */
;