C_CshDiscFcstPaymentTerms

DDL: C_CSHDISCFCSTPAYMENTTERMS Type: view CONSUMPTION Package: FINS_FIS_AP_APPS

Cash Discount Forecast Payment Terms

C_CshDiscFcstPaymentTerms is a Consumption CDS View that provides data about "Cash Discount Forecast Payment Terms" 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 FINS_FIS_AP_APPS.

Data Sources (1)

SourceAliasJoin Type
I_PaymentTerms I_PaymentTerms from

Associations (1)

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

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CFICDFPAYTTRMS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Cash Discount Forecast Payment Terms view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey PaymentTerms view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #CONSUMPTION view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY 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_CshDiscFcstPaymentTerms.
-- 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_CshDiscFcstPaymentTerms AS
SELECT
  PaymentTerms
FROM I_PaymentTerms
LEFT OUTER JOIN C_CshDiscFcstPaymentTermsText AS _Text ON PaymentTerms = _Text.PaymentTerms  -- association [0..*]
;