P_CN_CADEPAYMENTMETHOD

DDL: P_CN_CADEPAYMENTMETHOD SQL: PCADEPAYTMETH Type: view BASIC

P_CN_CADEPAYMENTMETHOD is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (I_PaymentMethodText, t042e) and exposes 4 fields with key fields CompanyCode, PaymentMethod.

Data Sources (2)

SourceAliasJoin Type
I_PaymentMethodText _PaymentMethodText left_outer
t042e CompanyCodePaymentMethod from

Annotations (7)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName PCADEPAYTMETH view
VDM.viewType #BASIC view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode t042e zbukr Paying CoCd
KEY PaymentMethod t042e zlsch Pymt Meth.
PaymentMethodDescription I_PaymentMethodText PaymentMethodDescription
Language I_PaymentMethodText Language Report Text 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 P_CN_CADEPAYMENTMETHOD.
-- 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: PCADEPAYTMETH

CREATE VIEW P_CN_CADEPAYMENTMETHOD AS
SELECT
  CompanyCodePaymentMethod.zbukr AS CompanyCode,
  CompanyCodePaymentMethod.zlsch AS PaymentMethod,
  _PaymentMethodText.PaymentMethodDescription AS PaymentMethodDescription,
  _PaymentMethodText.Language AS Language
FROM t042e AS CompanyCodePaymentMethod
LEFT OUTER JOIN I_PaymentMethodText AS _PaymentMethodText ON /* join condition not captured in parsed metadata */
;