R_SettlmtBusProcVar

DDL: R_SETTLMTBUSPROCVAR Type: view_entity BASIC

Settlmt Business Process Variant

R_SettlmtBusProcVar is a Basic CDS View that provides data about "Settlmt Business Process Variant" in SAP S/4HANA. It reads from 1 data source (wlf_c_proctype) and exposes 2 fields with key field SettlmtBusProcVar. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
wlf_c_proctype wlf_c_proctype from

Associations (1)

CardinalityTargetAliasCondition
[0..*] R_SettlmtBusProcVarText _Text $projection.SettlmtBusProcVar = _Text.SettlmtBusProcVar

Annotations (11)

NameValueLevelField
EndUserText.label Settlmt Business Process Variant view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SettlmtBusProcVar view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Analytics.technicalName RWLFSMTBUSPRVAR view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions false view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SettlmtBusProcVar process_type Type of Data
_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 R_SettlmtBusProcVar.
-- 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 R_SettlmtBusProcVar AS
SELECT
  process_type AS SettlmtBusProcVar
FROM wlf_c_proctype
LEFT OUTER JOIN R_SettlmtBusProcVarText AS _Text ON SettlmtBusProcVar = _Text.SettlmtBusProcVar  -- association [0..*]
;