I_CAIncomingPaymentMethod
Incoming Payment Method
I_CAIncomingPaymentMethod is a Composite CDS View that provides data about "Incoming Payment Method" in SAP S/4HANA. It reads from 1 data source (I_CAPaymentMethod) and exposes 23 fields with key fields Country, CAIncomingPaymentMethod. Part of development package FKKV.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CAPaymentMethod | I_CAPaymentMethod | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Incoming Payment Method | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.modelingPattern | #NONE | view | |
| ObjectModel.representativeKey | CAIncomingPaymentMethod | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | false | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (23)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Country | Country | ||
| KEY | CAIncomingPaymentMethod | CAPaymentMethod | ||
| BankDetailsOfBPAreRequired | BankDetailsOfBPAreRequired | |||
| AddressDetailsAreRequired | AddressDetailsAreRequired | |||
| IsPaytMethForIncomingPayments | IsPaytMethForIncomingPayments | |||
| CAIsPaytMethForPostOffcBkAcct | CAIsPaytMethForPostOffcBkAcct | |||
| ChequeIsCreatedWithPaytMeth | ChequeIsCreatedWithPaytMeth | |||
| IsPaytMethForEUInternalTransf | IsPaytMethForEUInternalTransf | |||
| CAPaymentMethodProcessingType | CAPaymentMethodProcessingType | |||
| CAPaymentMediumFormat | CAPaymentMediumFormat | |||
| CAPaytMediumFormatSupplement | CAPaytMediumFormatSupplement | |||
| CAPaymentOrderIsCreated | CAPaymentOrderIsCreated | |||
| CAPaytMethForBillerDirect | CAPaytMethForBillerDirect | |||
| CAIsPaytSlipWithRefNmbrProced | CAIsPaytSlipWithRefNmbrProced | |||
| CAPaytMethAddressIsNotRequired | CAPaytMethAddressIsNotRequired | |||
| BR_CABoletoAssignmentType | BR_CABoletoAssignmentType | |||
| CAPaymentMethodNotificationCat | CAPaymentMethodNotificationCat | |||
| ContrAcctgIBANOrSWIFTRqmtCode | ContrAcctgIBANOrSWIFTRqmtCode | |||
| CASEPAMandateIsRequired | CASEPAMandateIsRequired | |||
| CASEPAPrenotificationIsCreated | CASEPAPrenotificationIsCreated | |||
| CARealTimePaymentCategory | CARealTimePaymentCategory | |||
| _Country | _Country | |||
| _Text | _Text |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Incoming Payment Method'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: { modelingPattern: #NONE,
representativeKey: 'CAIncomingPaymentMethod',
supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#SQL_DATA_SOURCE ],
usageType: { dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S } }
@Search.searchable: false
@VDM.viewType: #COMPOSITE
define view entity I_CAIncomingPaymentMethod
as select from I_CAPaymentMethod
{
@ObjectModel.foreignKey.association: '_Country'
key Country,
key CAPaymentMethod as CAIncomingPaymentMethod,
BankDetailsOfBPAreRequired,
AddressDetailsAreRequired,
IsPaytMethForIncomingPayments,
CAIsPaytMethForPostOffcBkAcct,
ChequeIsCreatedWithPaytMeth,
IsPaytMethForEUInternalTransf,
CAPaymentMethodProcessingType,
CAPaymentMediumFormat,
CAPaytMediumFormatSupplement,
CAPaymentOrderIsCreated,
CAPaytMethForBillerDirect,
CAIsPaytSlipWithRefNmbrProced,
CAPaytMethAddressIsNotRequired,
BR_CABoletoAssignmentType,
CAPaymentMethodNotificationCat,
ContrAcctgIBANOrSWIFTRqmtCode,
CASEPAMandateIsRequired,
CASEPAPrenotificationIsCreated,
CARealTimePaymentCategory,
/* Associations */
_Country,
_Text
}
where
IsPaytMethForIncomingPayments = 'X'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- 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