I_CustomerPaymentTermsText

DDL: I_CUSTOMERPAYMENTTERMSTEXT SQL: ISDCUSTPAYTTRMST Type: view BASIC

Customer Payment Terms - Text

I_CustomerPaymentTermsText is a Basic CDS View that provides data about "Customer Payment Terms - Text" in SAP S/4HANA. It reads from 1 data source (tvzbt) and exposes 5 fields with key fields CustomerPaymentTerms, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tvzbt tvzbt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CustomerPaymentTerms _CustomerPaymentTerms $projection.CustomerPaymentTerms = _CustomerPaymentTerms.CustomerPaymentTerms
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (18)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CustomerPaymentTerms view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Customer Payment Terms - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDCUSTPAYTTRMST view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Analytics.dataExtraction.enabled true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CustomerPaymentTerms zterm Terms of Payment
KEY Language spras Off. Language
CustomerPaymentTermsName vtext Wgh.Dat.Ty.Txt.
_CustomerPaymentTerms _CustomerPaymentTerms
_Language _Language

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 I_CustomerPaymentTermsText.
-- 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: ISDCUSTPAYTTRMST

CREATE VIEW I_CustomerPaymentTermsText AS
SELECT
  zterm AS CustomerPaymentTerms,
  spras AS Language,
  vtext AS CustomerPaymentTermsName
FROM tvzbt
LEFT OUTER JOIN I_CustomerPaymentTerms AS _CustomerPaymentTerms ON CustomerPaymentTerms = _CustomerPaymentTerms.CustomerPaymentTerms  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;