C_CAPaymentMethodVH
Zahlungsmethode
C_CAPaymentMethodVH is a Consumption CDS View that provides data about "Zahlungsmethode" in SAP S/4HANA. It reads from 1 data source (I_CAPaymentMethod) and exposes 4 fields with key fields Country, CAPaymentMethod. It is exposed through 1 OData service (UI_CASECURITYDEPMGMTTP). It is used in 1 Fiori application: Manage Security Deposits. Part of development package ODATA_O2C_FICA_GENTOOLS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CAPaymentMethod | I_CAPaymentMethod | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_Language | sylangu |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CCAPAYTMETHODVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Consumption.ranked | true | view | |
| ObjectModel.representativeKey | CAPaymentMethod | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| EndUserText.label | Zahlungsmethode | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_CASECURITYDEPMGMTTP | UI_CASECURITYDEPMGMTTP | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F4415 | Manage Security Deposits | Transactional |
Manage Security Deposits
Business Role: Accounts Payable and Receivable Accountant (FI-CA)
With this app you can display, create, clear, release, and reverse cash security deposits. Using the available filters filters, you can enter search criteria in order to find specific security deposits.
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Country | Country | ||
| KEY | CAPaymentMethod | CAPaymentMethod | ||
| CAPaymentMediumFormat | CAPaymentMediumFormat | Zahlungsträgerformat | ||
| CAPaymentMethodName |
@AbapCatalog.sqlViewName: 'CCAPAYTMETHODVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
@ObjectModel.representativeKey: 'CAPaymentMethod'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@Search.searchable: true
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Zahlungsmethode'
define view C_CAPaymentMethodVH with parameters
@Consumption.hidden: true
@Environment.systemField: #SYSTEM_LANGUAGE
P_Language : sylangu
as select from I_CAPaymentMethod {
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH }
key Country,
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH }
@ObjectModel.text.element: 'CAPaymentMethodName'
key CAPaymentMethod,
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
@EndUserText.label: 'Zahlungsträgerformat'
CAPaymentMediumFormat,
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
@Semantics.text: true
_Text[1:Language = :P_Language].CAPaymentMethodName as CAPaymentMethodName
}
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