I_Paymentmethodsupplement

DDL: I_PAYMENTMETHODSUPPLEMENT SQL: IPMNTMTHSPP Type: view BASIC

Payment Method Supplement

I_Paymentmethodsupplement is a Basic CDS View (Dimension) that provides data about "Payment Method Supplement" in SAP S/4HANA. It reads from 1 data source (t042f) and exposes 2 fields with key field PaymentMethodSupplement. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t042f PaymentMethodSupplement from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_Paymentmethodsupplementtext _Text $projection.PaymentMethodSupplement = _Text.PaymentMethodSupplement

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey PaymentMethodSupplement view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.sqlViewName IPMNTMTHSPP view
VDM.viewType #BASIC view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Payment Method Supplement view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PaymentMethodSupplement t042f uzawe Pmnt Meth. Sup.
_Text _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 I_Paymentmethodsupplement.
-- 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: IPMNTMTHSPP

CREATE VIEW I_Paymentmethodsupplement AS
SELECT
  PaymentMethodSupplement.uzawe AS PaymentMethodSupplement
FROM t042f AS PaymentMethodSupplement
LEFT OUTER JOIN I_Paymentmethodsupplementtext AS _Text ON PaymentMethodSupplement = _Text.PaymentMethodSupplement  -- association [0..*]
;