I_ARunSupplySelRuleOptrText

DDL: I_ARUNSUPPLYSELRULEOPTRTEXT Type: view_entity BASIC Package: ARUN_SUPPLY_SELECTION_RULE

Operator - Text

I_ARunSupplySelRuleOptrText is a Basic CDS View that provides data about "Operator - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, ARunSupplySelectionRuleOptr. It has 1 association to related views. Part of development package ARUN_SUPPLY_SELECTION_RULE.

Data Sources (1)

SourceAliasJoin Type
dd07t ValueProvider from

Associations (1)

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

Annotations (6)

NameValueLevelField
EndUserText.label Operator - Text view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY ARunSupplySelectionRuleOptr
DomainValue dd07t domvalue_l Lower Value
ARunSupplySelRuleOptrText dd07t ddtext Short text
_ARunSupplySelectionRuleOptr _ARunSupplySelectionRuleOptr
_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_ARunSupplySelRuleOptrText.
-- 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 I_ARunSupplySelRuleOptrText AS
SELECT
  cast( ValueProvider.ddlanguage as spras preserving type ) AS Language,
  cast( ValueProvider.domvalue_l as arun_supply_sel_operator ) AS ARunSupplySelectionRuleOptr,
  ValueProvider.domvalue_l AS DomainValue,
  ValueProvider.ddtext AS ARunSupplySelRuleOptrText
FROM dd07t AS ValueProvider
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;