C_PaymentmethodTextVHTemp

DDL: C_PAYMENTMETHODTEXTVHTEMP SQL: CPAYTMETHTEXT Type: view CONSUMPTION

C_PaymentmethodTextVHTemp is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_PaymentMethodText) and exposes 5 fields with key fields Country, PaymentMethod, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_PaymentMethodText I_PaymentMethodText from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Country _Country $projection.Country = _Country.Country

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CPAYTMETHTEXT view
ObjectModel.representativeKey PaymentMethod view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Country Country Venue: Ctry/Reg
KEY PaymentMethod PaymentMethod Pymt Meth.
KEY Language Language Report Text Language
PaymentMethodDescription PaymentMethodDescription Payment Method Description
_Country _Country

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 C_PaymentmethodTextVHTemp.
-- 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: CPAYTMETHTEXT

CREATE VIEW C_PaymentmethodTextVHTemp AS
SELECT
  Country,
  PaymentMethod,
  Language,
  PaymentMethodDescription
FROM I_PaymentMethodText
LEFT OUTER JOIN I_Country AS _Country ON Country = _Country.Country  -- association [0..1]
;