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 5 OData services (ASQL_F3013, ASQL_F4664, ASQL_F7651, ...). 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 (5)

ServiceBindingVersionContractRelease
ASQL_F3013 ASQL_F3013 C2 NOT_RELEASED
ASQL_F4664 ASQL_F4664 C2 NOT_RELEASED
ASQL_F7651 ASQL_F7651 C2 NOT_RELEASED
ASQL_F8301 ASQL_F8301 C2 NOT_RELEASED
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 Venue: Ctry/Reg
KEY CAPaymentMethod CAPaymentMethod Payment Method
CAPaymentMediumFormat CAPaymentMediumFormat Zahlungsträgerformat
CAPaymentMethodName

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 C_CAPaymentMethodVH.
-- 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.
-- SQL view name: CCAPAYTMETHODVH
-- Parameters: P_Language : sylangu

CREATE VIEW C_CAPaymentMethodVH AS
SELECT
  Country,
  CAPaymentMethod,
  CAPaymentMediumFormat,
  _Text[1:Language = :P_Language].CAPaymentMethodName AS CAPaymentMethodName
FROM I_CAPaymentMethod
;