I_ARunSupSelRule

DDL: I_ARUNSUPSELRULE Type: view_entity BASIC

Supply Selection Rule

I_ARunSupSelRule is a Basic CDS View that provides data about "Supply Selection Rule" in SAP S/4HANA. It reads from 1 data source (arun_ssel_rule) and exposes 7 fields with key field ARunSupplySelectionRuleUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
arun_ssel_rule SelctionRule from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ARunSupSelRuleText _ARunSupSelRuleText $projection.ARunSupplySelectionRuleUUID = _ARunSupSelRuleText.ARunSupplySelectionRuleUUID

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Supply Selection Rule view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ARunSupplySelectionRuleUUID arunsupplyselectionruleuuid ARun Sel Rule UUID
ARunSupplySelectionRule arunsupplyselectionrule ARun Supply Sel Rule
ARunSupplySelectionRuleText _ARunSupSelRuleText ARunSupplySelectionRuleText ARun Sel Rule
CreatedByUser createdbyuser User Name
CreationDateTime creationdatetime Timestamp
LastChangedByUser lastchangedbyuser User Name
LastChangeDateTime lastchangedatetime Timestamp

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_ARunSupSelRule.
-- 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_ARunSupSelRule AS
SELECT
  ARunSupplySelectionRuleUUID,
  ARunSupplySelectionRule,
  _ARunSupSelRuleText.ARunSupplySelectionRuleText AS ARunSupplySelectionRuleText,
  CreatedByUser,
  CreationDateTime,
  LastChangedByUser,
  LastChangeDateTime
FROM arun_ssel_rule AS SelctionRule
LEFT OUTER JOIN I_ARunSupSelRuleText AS _ARunSupSelRuleText ON ARunSupplySelectionRuleUUID = _ARunSupSelRuleText.ARunSupplySelectionRuleUUID  -- association [1..1]
;