I_Paymentmethodsupplementtext

DDL: I_PAYMENTMETHODSUPPLEMENTTEXT SQL: IPMNTMTHSPPTXT Type: view BASIC

CDS view for Treasury: GFN - PaymentMethodSupplementName

I_Paymentmethodsupplementtext is a Basic CDS View (Text) that provides data about "CDS view for Treasury: GFN - PaymentMethodSupplementName" in SAP S/4HANA. It reads from 1 data source (t042h) and exposes 5 fields with key fields Language, PaymentMethodSupplement. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t042h PaymentMethodSupplementText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Paymentmethodsupplement _PaymentMethodSupplement $projection.PaymentMethodSupplement = _PaymentMethodSupplement.PaymentMethodSupplement
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT 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 IPMNTMTHSPPTXT view
VDM.viewType #BASIC view
Analytics.dataCategory #TEXT view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CDS view for Treasury: GFN - PaymentMethodSupplementName view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language t042h spras Off. Language
KEY PaymentMethodSupplement t042h uzawe Pmnt Meth. Sup.
PaymentMethodSupplementName
_PaymentMethodSupplement _PaymentMethodSupplement
_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_Paymentmethodsupplementtext.
-- 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: IPMNTMTHSPPTXT

CREATE VIEW I_Paymentmethodsupplementtext AS
SELECT
  PaymentMethodSupplementText.spras AS Language,
  PaymentMethodSupplementText.uzawe AS PaymentMethodSupplement,
  cast(PaymentMethodSupplementText.txt30 as ftr_gen_pymnt_meth_suppl_name) AS PaymentMethodSupplementName
FROM t042h AS PaymentMethodSupplementText
LEFT OUTER JOIN I_Paymentmethodsupplement AS _PaymentMethodSupplement ON PaymentMethodSupplement = _PaymentMethodSupplement.PaymentMethodSupplement  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;