C_SalesDocPaymentMethodVH

DDL: C_SALESDOCPAYMENTMETHODVH Type: view CONSUMPTION

Payment Method

C_SalesDocPaymentMethodVH is a Consumption CDS View that provides data about "Payment Method" in SAP S/4HANA. It reads from 2 data sources (I_CompanyCode, I_PaymentMethodInCountryVH) and exposes 4 fields with key fields BillingCompanyCode, PaymentMethod.

Data Sources (2)

SourceAliasJoin Type
I_CompanyCode _CompanyCode from
I_PaymentMethodInCountryVH _PaymentMethod inner

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName CSLSDOCPAYMETHVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
Search.searchable true view
Consumption.ranked true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey PaymentMethod view
Metadata.ignorePropagatedAnnotations true view
Consumption.valueHelpDefault.fetchValues #AUTOMATICALLY_WHEN_DISPLAYED view
EndUserText.label Payment Method view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BillingCompanyCode I_CompanyCode CompanyCode Receiver Company Code
KEY PaymentMethod I_PaymentMethodInCountryVH PaymentMethod Pymt Meth.
PaymentMethodDescription
PaymentMethodName I_PaymentMethodInCountryVH PaymentMethodName Text

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_SalesDocPaymentMethodVH.
-- 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 C_SalesDocPaymentMethodVH AS
SELECT
  _CompanyCode.CompanyCode AS BillingCompanyCode,
  _PaymentMethod.PaymentMethod AS PaymentMethod,
  _PaymentMethod._Text[1:Language=$session.system_language].PaymentMethodDescription AS PaymentMethodDescription,
  _PaymentMethod.PaymentMethodName AS PaymentMethodName
FROM I_CompanyCode AS _CompanyCode
INNER JOIN I_PaymentMethodInCountryVH AS _PaymentMethod ON /* join condition not captured in parsed metadata */
;