C_PaymentTermsVHTemp

DDL: C_PAYMENTTERMSVHTEMP SQL: CPAYTERMSVHTEMP Type: view CONSUMPTION Package: VDM_MD_BP

Value Help for Terms of Payment

C_PaymentTermsVHTemp is a Consumption CDS View that provides data about "Value Help for Terms of Payment" in SAP S/4HANA. It reads from 1 data source (I_PaymentTerms) and exposes 2 fields with key field PaymentTerms. It has 1 association to related views. Part of development package VDM_MD_BP.

Data Sources (1)

SourceAliasJoin Type
I_PaymentTerms PaymentTerms from

Associations (1)

CardinalityTargetAliasCondition
[0..*] C_PaymentTermsTextVHTemp _Text $projection.PaymentTerms = _Text.PaymentTerms

Annotations (13)

NameValueLevelField
EndUserText.label Value Help for Terms of Payment view
AbapCatalog.sqlViewName CPAYTERMSVHTEMP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.representativeKey PaymentTerms view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PaymentTerms I_PaymentTerms PaymentTerms Pyt Terms
_Text _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_PaymentTermsVHTemp.
-- 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: CPAYTERMSVHTEMP

CREATE VIEW C_PaymentTermsVHTemp AS
SELECT
  PaymentTerms.PaymentTerms AS PaymentTerms
FROM I_PaymentTerms AS PaymentTerms
LEFT OUTER JOIN C_PaymentTermsTextVHTemp AS _Text ON PaymentTerms = _Text.PaymentTerms  -- association [0..*]
;