I_CAPaymentMethodApplArea

DDL: I_CAPAYMENTMETHODAPPLAREA Type: view_entity BASIC

Payment Method per Application Area

I_CAPaymentMethodApplArea is a Basic CDS View that provides data about "Payment Method per Application Area" in SAP S/4HANA. It reads from 2 data sources (I_CAApplicationArea, tfk042za) and exposes 9 fields with key fields Country, CAPaymentMethod, CAApplicationArea. It has 3 associations to related views.

Data Sources (2)

SourceAliasJoin Type
I_CAApplicationArea ApplArea inner
tfk042za tfk042za from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_Country _Country $projection.Country = _Country.Country
[0..*] I_CAPaymentMethodText _PaymentMethodText $projection.Country = _PaymentMethodText.Country and $projection.CAPaymentMethod = _PaymentMethodText.CAPaymentMethod
[1..1] I_CAApplicationArea _ApplArea $projection.CAApplicationArea = _ApplArea.CAApplicationArea

Annotations (8)

NameValueLevelField
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey CAPaymentMethod view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Payment Method per Application Area view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Country tfk042za land1 Trip Ctry/Reg
KEY CAPaymentMethod tfk042za zlsch Pymt Meth.
KEY CAApplicationArea tfk042za applk ApplicationArea
CADocumentType tfk042za blart Rep. rec. doc. type
CAClearingReason tfk042za augrd Clrg Reasn
CANoteToPayeeCategory tfk042za preftyp Note to Payee Type
_Country _Country
_PaymentMethodText _PaymentMethodText
_ApplArea _ApplArea

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_CAPaymentMethodApplArea.
-- 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.

CREATE VIEW I_CAPaymentMethodApplArea AS
SELECT
  tfk042za.land1 AS Country,
  tfk042za.zlsch AS CAPaymentMethod,
  tfk042za.applk AS CAApplicationArea,
  tfk042za.blart AS CADocumentType,
  tfk042za.augrd AS CAClearingReason,
  tfk042za.preftyp AS CANoteToPayeeCategory
FROM tfk042za
INNER JOIN I_CAApplicationArea AS ApplArea ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Country AS _Country ON Country = _Country.Country  -- association [1..1]
LEFT OUTER JOIN I_CAPaymentMethodText AS _PaymentMethodText ON Country = _PaymentMethodText.Country AND CAPaymentMethod = _PaymentMethodText.CAPaymentMethod  -- association [0..*]
LEFT OUTER JOIN I_CAApplicationArea AS _ApplArea ON CAApplicationArea = _ApplArea.CAApplicationArea  -- association [1..1]
;