I_PaymentMethodText

DDL: I_PAYMENTMETHODTEXT SQL: IFIPAYTMETHTEXT Type: view BASIC

Payment Method - Text

I_PaymentMethodText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Financial Operations

I_PaymentMethodText is a Basic CDS View that provides data about "Payment Method - Text" in SAP S/4HANA. It reads from 1 data source (P_PaymentMethodText) and exposes 6 fields with key fields Country, PaymentMethod, Language. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFI-AP-IS
CapabilitiesLanguage-Dependent Text, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Data Extraction
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view specifies which payment methods are to be used for payment transactions in which country.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
P_PaymentMethodText P_PaymentMethodText from

Associations (2)

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

Annotations (13)

NameValueLevelField
EndUserText.label Payment Method - Text view
AbapCatalog.sqlViewName IFIPAYTMETHTEXT view
ObjectModel.representativeKey PaymentMethod view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
Analytics.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Country P_PaymentMethodText Country Country/Region Key
KEY PaymentMethod P_PaymentMethodText PaymentMethod Payment Method
KEY Language P_PaymentMethodText Language Report Text Language
PaymentMethodDescription P_PaymentMethodText PaymentMethodDescription Description of Payment Method in Logon Language
_Country _Country
_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_PaymentMethodText.
-- 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: IFIPAYTMETHTEXT

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