I_CAPaymentMethodApplArea
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)
| Source | Alias | Join Type |
|---|---|---|
| I_CAApplicationArea | ApplArea | inner |
| tfk042za | tfk042za | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA