C_CAPaymentMethodVH

DDL: C_CAPAYMENTMETHODVH SQL: CCAPAYTMETHODVH Type: view CONSUMPTION Package: ODATA_O2C_FICA_GENTOOLS

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)

SourceAliasJoin Type
I_CAPaymentMethod I_CAPaymentMethod from

Parameters (1)

NameTypeDefault
P_Language sylangu

Annotations (12)

NameValueLevelField
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)

ServiceBindingVersionContractRelease
UI_CASECURITYDEPMGMTTP UI_CASECURITYDEPMGMTTP V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
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)

KeyFieldSource TableSource FieldDescription
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
}